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

110 lines
2.2 KiB
C
Raw Normal View History

2018-01-25 17:24:33 +01:00
#ifndef LLARP_RC_H
#define LLARP_RC_H
#include <llarp/address_info.h>
#include <llarp/crypto.h>
2018-01-29 15:27:24 +01:00
#include <llarp/exit_info.h>
2018-01-25 17:24:33 +01:00
#ifdef __cplusplus
#include <string>
#endif
2018-06-06 14:59:15 +02:00
// forward declare
struct llarp_alloc;
2018-06-13 18:32:34 +02:00
struct llarp_rc;
2018-06-06 14:59:15 +02:00
2018-06-06 19:02:57 +02:00
#define MAX_RC_SIZE (1024)
#define NICKLEN (32)
2018-06-13 18:32:34 +02:00
bool
llarp_rc_bdecode(struct llarp_rc *rc, llarp_buffer_t *buf);
bool
llarp_rc_bencode(const struct llarp_rc *rc, llarp_buffer_t *buf);
struct llarp_rc
{
2018-01-29 15:27:24 +01:00
struct llarp_ai_list *addrs;
2018-06-10 16:05:48 +02:00
// public encryption public key
byte_t enckey[PUBKEYSIZE];
2018-06-10 16:05:48 +02:00
// public signing public key
byte_t pubkey[PUBKEYSIZE];
2018-01-29 15:27:24 +01:00
struct llarp_xi_list *exits;
byte_t signature[SIGSIZE];
/// node nickname, yw kee
byte_t nickname[NICKLEN];
2018-05-21 14:44:28 +02:00
uint64_t last_updated;
2018-01-29 15:27:24 +01:00
2018-07-16 06:55:46 +02:00
#ifdef __cplusplus
2018-06-13 18:32:34 +02:00
bool
BEncode(llarp_buffer_t *buf) const
{
return llarp_rc_bencode(this, buf);
}
bool
BDecode(llarp_buffer_t *buf)
{
return llarp_rc_bdecode(this, buf);
}
std::string
Nick() const
{
const char *nick = (const char *)nickname;
return std::string(nick, strnlen(nick, sizeof(nickname)));
}
2018-07-16 06:55:46 +02:00
#endif
2018-06-13 18:32:34 +02:00
};
void
llarp_rc_free(struct llarp_rc *rc);
bool
llarp_rc_new(struct llarp_rc *rc);
bool
llarp_rc_verify_sig(struct llarp_crypto *crypto, struct llarp_rc *rc);
void
2018-06-01 23:35:17 +02:00
llarp_rc_copy(struct llarp_rc *dst, const struct llarp_rc *src);
2018-01-25 17:24:33 +01:00
2018-07-03 15:13:56 +02:00
bool
llarp_rc_is_public_router(const struct llarp_rc *const rc);
2018-05-22 21:19:06 +02:00
void
llarp_rc_set_addrs(struct llarp_rc *rc, struct llarp_alloc *mem,
struct llarp_ai_list *addr);
2018-06-21 15:04:06 +02:00
bool
llarp_rc_set_nickname(struct llarp_rc *rc, const char *name);
2018-06-21 15:04:06 +02:00
void
llarp_rc_set_pubenckey(struct llarp_rc *rc, const uint8_t *pubenckey);
2018-05-22 21:19:06 +02:00
void
2018-06-21 15:04:06 +02:00
llarp_rc_set_pubsigkey(struct llarp_rc *rc, const uint8_t *pubkey);
/// combo
void
llarp_rc_set_pubkey(struct llarp_rc *rc, const uint8_t *pubenckey,
const uint8_t *pubsigkey);
2018-05-22 21:19:06 +02:00
void
llarp_rc_sign(struct llarp_crypto *crypto, const byte_t *seckey,
struct llarp_rc *rc);
void
llarp_rc_clear(struct llarp_rc *rc);
bool
llarp_rc_addr_list_iter(struct llarp_ai_list_iter *iter, struct llarp_ai *ai);
bool
llarp_rc_read(const char *fpath, struct llarp_rc *result);
2018-06-21 15:04:06 +02:00
2018-05-22 21:19:06 +02:00
bool
llarp_rc_write(struct llarp_rc *rc, const char *our_rc_file);
2018-01-25 17:24:33 +01:00
#endif