mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
60f4d96ba5
* route poking: * remove popen() call, replace with reading /proc/net/route for getting default route * dynamically poke and unpoke routes on runtime * swap intros and fix rpc endpoint for version to return what the ui expects * use std::string::find_first_not_of instead of using a lambda
42 lines
997 B
C++
42 lines
997 B
C++
#ifndef LLARP_IWP_HPP
|
|
#define LLARP_IWP_HPP
|
|
|
|
#include <link/server.hpp>
|
|
#include <iwp/linklayer.hpp>
|
|
#include <memory>
|
|
#include <config/key_manager.hpp>
|
|
|
|
namespace llarp::iwp
|
|
{
|
|
LinkLayer_ptr
|
|
NewInboundLink(
|
|
std::shared_ptr<KeyManager> keyManager,
|
|
GetRCFunc getrc,
|
|
LinkMessageHandler h,
|
|
SignBufferFunc sign,
|
|
BeforeConnectFunc_t before,
|
|
SessionEstablishedHandler est,
|
|
SessionRenegotiateHandler reneg,
|
|
TimeoutHandler timeout,
|
|
SessionClosedHandler closed,
|
|
PumpDoneHandler pumpDone,
|
|
WorkerFunc_t work);
|
|
|
|
LinkLayer_ptr
|
|
NewOutboundLink(
|
|
std::shared_ptr<KeyManager> keyManager,
|
|
GetRCFunc getrc,
|
|
LinkMessageHandler h,
|
|
SignBufferFunc sign,
|
|
BeforeConnectFunc_t before,
|
|
SessionEstablishedHandler est,
|
|
SessionRenegotiateHandler reneg,
|
|
TimeoutHandler timeout,
|
|
SessionClosedHandler closed,
|
|
PumpDoneHandler pumpDone,
|
|
WorkerFunc_t work);
|
|
|
|
} // namespace llarp::iwp
|
|
|
|
#endif
|