mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
81 lines
1.5 KiB
C++
81 lines
1.5 KiB
C++
#ifndef LLARP_AI_HPP
|
|
#define LLARP_AI_HPP
|
|
#include <llarp/mem.h>
|
|
#include <llarp/net.h>
|
|
#include <stdbool.h>
|
|
#include <llarp/bencode.hpp>
|
|
#include <llarp/crypto.hpp>
|
|
|
|
#include <string>
|
|
|
|
/**
|
|
* address_info.hpp
|
|
*
|
|
* utilities for handling addresses on the llarp network
|
|
*/
|
|
|
|
/// address information model
|
|
namespace llarp
|
|
{
|
|
struct AddressInfo : public IBEncodeMessage
|
|
{
|
|
uint16_t rank;
|
|
std::string dialect;
|
|
llarp::PubKey pubkey;
|
|
struct in6_addr ip;
|
|
uint16_t port;
|
|
|
|
AddressInfo() : IBEncodeMessage()
|
|
{
|
|
}
|
|
|
|
AddressInfo(const AddressInfo& other)
|
|
: IBEncodeMessage()
|
|
, rank(other.rank)
|
|
, dialect(other.dialect)
|
|
, pubkey(other.pubkey)
|
|
{
|
|
port = other.port;
|
|
version = other.version;
|
|
memcpy(ip.s6_addr, other.ip.s6_addr, 16);
|
|
}
|
|
|
|
~AddressInfo();
|
|
|
|
AddressInfo&
|
|
operator=(const AddressInfo& other);
|
|
|
|
bool
|
|
operator==(const AddressInfo& other) const;
|
|
|
|
bool
|
|
operator<(const AddressInfo& other) const;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t k, llarp_buffer_t* buf);
|
|
|
|
friend std::ostream&
|
|
operator<<(std::ostream& out, const AddressInfo& a)
|
|
{
|
|
char tmp[128] = {0};
|
|
inet_ntop(AF_INET6, &a.ip, tmp, sizeof(tmp));
|
|
return out << tmp << "." << std::to_string(a.port);
|
|
}
|
|
|
|
struct Hash
|
|
{
|
|
size_t
|
|
operator()(const AddressInfo& addr) const
|
|
{
|
|
return *addr.pubkey.data_l();
|
|
}
|
|
};
|
|
};
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|