mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
19 lines
264 B
C++
19 lines
264 B
C++
#ifndef LLARP_LINK_CURVECP_HPP
|
|
#define LLARP_LINK_CURVECP_HPP
|
|
|
|
#include <memory>
|
|
|
|
namespace llarp
|
|
{
|
|
struct ILinkLayer;
|
|
struct Router;
|
|
|
|
namespace curvecp
|
|
{
|
|
std::unique_ptr< ILinkLayer >
|
|
NewServer(llarp::Router* r);
|
|
}
|
|
} // namespace llarp
|
|
|
|
#endif
|