mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
16 lines
291 B
C++
16 lines
291 B
C++
#include <llarp/link/curvecp.hpp>
|
|
#include <llarp/messages/link_intro.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace curvecp
|
|
{
|
|
std::unique_ptr< ILinkLayer >
|
|
NewServer(__attribute__((unused)) llarp::Router* r)
|
|
{
|
|
return nullptr;
|
|
}
|
|
} // namespace curvecp
|
|
|
|
} // namespace llarp
|