mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
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
|