mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
33bfaf7ecd
test criteria: - test build on macOS - test build in debian docker container - test build in fedora docker container
17 lines
312 B
C++
17 lines
312 B
C++
#include <llarp/link/curvecp.hpp>
|
|
#include "router.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
|