You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/link/utp.hpp

19 lines
252 B
C++

#ifndef LLARP_LINK_UTP_HPP
#define LLARP_LINK_UTP_HPP
#include <memory>
namespace llarp
{
struct ILinkLayer;
struct Router;
namespace utp
{
std::unique_ptr< ILinkLayer >
NewServer(llarp::Router* r);
}
} // namespace llarp
#endif