lokinet/include/llarp/link/utp.hpp
Jeff Becker 085563ac2f
implement utp link protocol
gut curvecp for now
2018-09-04 08:41:25 -04:00

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