make it compile

pull/15/head
Jeff Becker 6 years ago
parent ce1290d327
commit a8b672a19f
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -5,11 +5,13 @@
#include <llarp/router_contact.hpp>
#include <llarp/crypto.hpp>
#include <llarp/net.hpp>
#include <llarp/ev.h>
#include <llarp/link/session.hpp>
struct llarp_router;
namespace llarp
{
struct ILinkSession;
struct ILinkLayer
{
ILinkLayer(llarp_router* r) : m_router(r)

@ -0,0 +1,14 @@
#include <llarp/link/curvecp.hpp>
namespace llarp
{
namespace curvecp
{
std::unique_ptr< ILinkLayer >
NewServer(llarp_router* r)
{
return nullptr;
}
} // namespace curvecp
} // namespace llarp
Loading…
Cancel
Save