You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/address_info.hpp

91 lines
1.7 KiB
C++

#ifndef LLARP_AI_HPP
#define LLARP_AI_HPP
#include <bencode.hpp>
#include <crypto.h>
#include <crypto.hpp>
#include <mem.h>
#include <net.h>
#include <string>
#include <vector>
#include <stdbool.h>
/**
* address_info.hpp
*
* utilities for handling addresses on the llarp network
*/
/// address information model
namespace llarp
{
struct AddressInfo final : 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
BEncode(llarp_buffer_t* buf) const override;
bool
DecodeKey(llarp_buffer_t k, llarp_buffer_t* buf) override;
friend std::ostream&
operator<<(std::ostream& out, const AddressInfo& a)
{
char tmp[128] = {0};
inet_ntop(AF_INET6, (void*)&a.ip, tmp, sizeof(tmp));
out << tmp << ".";
#if defined(ANDROID) || defined(RPI)
snprintf(tmp, sizeof(tmp), "%u", a.port);
return out << tmp;
#else
return out << std::to_string(a.port);
#endif
}
struct Hash
{
size_t
operator()(const AddressInfo& addr) const
{
return *addr.pubkey.data_l();
}
};
};
bool
operator==(const AddressInfo& lhs, const AddressInfo& rhs);
bool
operator<(const AddressInfo& lhs, const AddressInfo& rhs);
} // namespace llarp
#endif