lokinet/include/llarp/address_info.h

92 lines
2.2 KiB
C
Raw Normal View History

2018-01-25 16:24:33 +00:00
#ifndef LLARP_AI_H
#define LLARP_AI_H
#include <llarp/crypto.h>
2018-01-26 14:17:51 +00:00
#include <llarp/mem.h>
2018-01-25 16:24:33 +00:00
#include <llarp/net.h>
#include <stdbool.h>
2018-05-25 09:17:08 +00:00
/**
* address_info.h
*
* utilities for handling addresses on the llarp network
*/
2018-01-26 14:17:51 +00:00
#define MAX_AI_DIALECT_SIZE 5
2018-01-29 14:27:24 +00:00
2018-05-25 09:17:08 +00:00
/// address information model
struct llarp_ai
{
2018-01-29 14:27:24 +00:00
uint16_t rank;
2018-04-04 15:19:11 +00:00
char dialect[MAX_AI_DIALECT_SIZE + 1];
byte_t enc_key[PUBKEYSIZE];
2018-01-29 14:27:24 +00:00
struct in6_addr ip;
uint16_t port;
};
2018-05-25 09:17:08 +00:00
/// convert address information struct to bencoded buffer
bool
llarp_ai_bencode(struct llarp_ai *ai, llarp_buffer_t *buff);
2018-05-25 09:17:08 +00:00
/// convert bencoded buffer to address information struct
bool
llarp_ai_bdecode(struct llarp_ai *ai, llarp_buffer_t *buff);
2018-01-29 14:27:24 +00:00
struct llarp_ai_list;
2018-05-25 09:17:08 +00:00
/// list of address information initialization
struct llarp_ai_list *
llarp_ai_list_new();
2018-05-25 09:17:08 +00:00
/// list of address information destruction
void
llarp_ai_list_free(struct llarp_ai_list *l);
2018-05-25 09:17:08 +00:00
/// copy AI
void
llarp_ai_copy(struct llarp_ai *dst, struct llarp_ai *src);
2018-05-25 09:17:08 +00:00
/// convert llarp_ai_list struct to bencoded buffer
bool
llarp_ai_list_bencode(struct llarp_ai_list *l, llarp_buffer_t *buff);
2018-05-25 09:17:08 +00:00
/// convert bencoded buffer to llarp_ai_list struct
bool
llarp_ai_list_bdecode(struct llarp_ai_list *l, llarp_buffer_t *buff);
2018-05-25 09:17:08 +00:00
/// return and remove first element from ai_list
struct llarp_ai
llarp_ai_list_popfront(struct llarp_ai_list *l);
2018-05-25 09:17:08 +00:00
/// pushes a copy of ai to the end of the list
void
llarp_ai_list_pushback(struct llarp_ai_list *l, struct llarp_ai *ai);
2018-05-10 23:32:46 +00:00
2018-05-25 09:17:08 +00:00
/// get the number of entries in list
size_t
llarp_ai_list_size(struct llarp_ai_list *l);
2018-01-29 14:27:24 +00:00
2018-05-30 20:56:47 +00:00
void
llarp_ai_list_copy(struct llarp_ai_list *dst, struct llarp_ai_list *src);
2018-05-25 09:17:08 +00:00
/// does this index exist in list
bool
llarp_ai_list_index(struct llarp_ai_list *l, ssize_t idx,
struct llarp_ai *result);
2018-01-29 14:27:24 +00:00
2018-05-25 09:17:08 +00:00
/// ai_list iterator configuration
struct llarp_ai_list_iter
{
2018-05-25 09:17:08 +00:00
/// a customizable pointer to pass data to iteration functor
2018-01-29 14:27:24 +00:00
void *user;
2018-05-25 09:17:08 +00:00
/// set by llarp_ai_list_iterate()
2018-01-29 14:27:24 +00:00
struct llarp_ai_list *list;
2018-05-25 09:17:08 +00:00
/// return false to break iteration early
2018-01-29 14:27:24 +00:00
bool (*visit)(struct llarp_ai_list_iter *, struct llarp_ai *);
};
2018-05-25 09:17:08 +00:00
/// iterator over list and call visit functor
void
llarp_ai_list_iterate(struct llarp_ai_list *l, struct llarp_ai_list_iter *iter);
2018-01-29 14:27:24 +00:00
2018-01-25 16:24:33 +00:00
#endif