mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
25 lines
655 B
C++
25 lines
655 B
C++
#include <link/iwp_internal.hpp>
|
|
#include <router/router.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace iwp
|
|
{
|
|
std::unique_ptr< ILinkLayer >
|
|
NewServerFromRouter(llarp::Router*)
|
|
{
|
|
// TODO: implement me
|
|
return nullptr;
|
|
}
|
|
std::unique_ptr< ILinkLayer >
|
|
NewServer(llarp::Crypto*, const SecretKey&, llarp::GetRCFunc,
|
|
llarp::LinkMessageHandler, llarp::SessionEstablishedHandler,
|
|
llarp::SessionRenegotiateHandler, llarp::SignBufferFunc,
|
|
llarp::TimeoutHandler, llarp::SessionClosedHandler)
|
|
{
|
|
// TODO: implement me
|
|
return nullptr;
|
|
}
|
|
} // namespace iwp
|
|
} // namespace llarp
|