1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/router.hpp

101 lines
1.7 KiB
C++
Raw Normal View History

2018-02-01 18:06:49 +01:00
#ifndef LLARP_ROUTER_HPP
#define LLARP_ROUTER_HPP
#include <llarp/link.h>
#include <llarp/path.h>
2018-02-01 18:07:01 +01:00
#include <llarp/router.h>
2018-05-20 19:45:47 +02:00
#include <llarp/router_contact.h>
2018-02-01 18:06:49 +01:00
#include <functional>
#include <list>
2018-05-20 19:45:47 +02:00
#include <map>
2018-02-01 18:06:49 +01:00
#include <llarp/link_message.hpp>
2018-05-20 19:45:47 +02:00
#include "fs.hpp"
#include "mem.hpp"
2018-02-01 18:06:49 +01:00
namespace llarp
{
struct try_connect_ctx
{
llarp_router *router = nullptr;
llarp_ai addr;
};
2018-02-01 18:06:49 +01:00
2018-02-01 18:07:01 +01:00
} // namespace llarp
2018-02-01 18:06:49 +01:00
struct llarp_router
{
2018-04-05 16:23:14 +02:00
bool ready;
2018-05-20 19:45:47 +02:00
// transient iwp encryption key
fs::path transport_keyfile = "transport.key";
// nodes to connect to on startup
std::map< std::string, fs::path > connect;
2018-05-20 19:45:47 +02:00
// long term identity key
fs::path ident_keyfile = "identity.key";
2018-05-20 19:45:47 +02:00
// path to write our self signed rc to
fs::path our_rc_file = "rc.signed";
// our router contact
2018-05-20 19:45:47 +02:00
llarp_rc rc;
llarp_ev_loop *netloop;
2018-05-18 22:08:57 +02:00
llarp_threadpool *tp;
llarp_logic *logic;
2018-02-01 18:07:01 +01:00
llarp_crypto crypto;
llarp_path_context *paths;
llarp_alloc *mem;
2018-05-20 19:45:47 +02:00
llarp_seckey_t identity;
2018-02-01 18:06:49 +01:00
llarp::InboundMessageHandler inbound_msg_handler;
std::list< llarp_link * > links;
llarp_router(llarp_alloc *mem);
2018-02-01 18:07:01 +01:00
~llarp_router();
2018-02-01 18:06:49 +01:00
bool
HandleRecvLinkMessage(struct llarp_link_session *from, llarp_buffer_t msg);
void
AddLink(struct llarp_link *link);
void
Close();
bool
Ready();
void
Run();
bool
EnsureIdentity();
bool
SaveRC();
2018-02-01 18:06:49 +01:00
uint8_t *
pubkey()
{
return llarp_seckey_topublic(identity);
}
2018-02-01 18:06:49 +01:00
void
try_connect(fs::path rcfile);
2018-04-05 16:23:14 +02:00
bool
has_session_to(const uint8_t *pubkey) const;
2018-05-20 19:45:47 +02:00
static bool
iter_try_connect(llarp_router_link_iter *i, llarp_router *router,
llarp_link *l);
2018-05-20 19:45:47 +02:00
static void
on_try_connect_result(llarp_link_establish_job *job);
2018-02-01 18:07:01 +01:00
};
2018-02-01 18:06:49 +01:00
#endif