mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
82 lines
1.6 KiB
C++
82 lines
1.6 KiB
C++
#ifndef LLARP_AI_HPP
|
|
#define LLARP_AI_HPP
|
|
|
|
#include <crypto/types.hpp>
|
|
#include <net/ip_address.hpp>
|
|
#include <net/net.h>
|
|
#include <util/bencode.hpp>
|
|
#include <util/mem.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
/**
|
|
* address_info.hpp
|
|
*
|
|
* utilities for handling addresses on the llarp network
|
|
*/
|
|
|
|
/// address information model
|
|
namespace llarp
|
|
{
|
|
struct AddressInfo
|
|
{
|
|
uint16_t rank;
|
|
std::string dialect;
|
|
llarp::PubKey pubkey;
|
|
in6_addr ip = {};
|
|
uint16_t port;
|
|
uint64_t version = LLARP_PROTO_VERSION;
|
|
|
|
bool
|
|
BDecode(llarp_buffer_t* buf)
|
|
{
|
|
return bencode_decode_dict(*this, buf);
|
|
}
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& k, llarp_buffer_t* buf);
|
|
|
|
/// Return an IpAddress representing the address portion of this AddressInfo
|
|
IpAddress
|
|
toIpAddress() const;
|
|
|
|
/// Updates our ip and port to reflact that of the given IpAddress
|
|
void
|
|
fromIpAddress(const IpAddress& address);
|
|
|
|
std::ostream&
|
|
print(std::ostream& stream, int level, int spaces) const;
|
|
|
|
struct Hash
|
|
{
|
|
size_t
|
|
operator()(const AddressInfo& addr) const
|
|
{
|
|
return AlignedBuffer<PUBKEYSIZE>::Hash()(addr.pubkey);
|
|
}
|
|
};
|
|
};
|
|
|
|
void
|
|
to_json(nlohmann::json& j, const AddressInfo& a);
|
|
|
|
inline std::ostream&
|
|
operator<<(std::ostream& out, const AddressInfo& a)
|
|
{
|
|
return a.print(out, -1, -1);
|
|
}
|
|
|
|
bool
|
|
operator==(const AddressInfo& lhs, const AddressInfo& rhs);
|
|
|
|
bool
|
|
operator<(const AddressInfo& lhs, const AddressInfo& rhs);
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|