mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
085563ac2f
gut curvecp for now
16 lines
226 B
C++
16 lines
226 B
C++
#ifndef LLARP_LINK_UTP_HPP
|
|
#define LLARP_LINK_UTP_HPP
|
|
|
|
#include <llarp/link_layer.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace utp
|
|
{
|
|
std::unique_ptr< ILinkLayer >
|
|
NewServer(llarp_router* r);
|
|
}
|
|
} // namespace llarp
|
|
|
|
#endif
|