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/net/address_info.hpp

73 lines
1.3 KiB
C++

#ifndef LLARP_AI_HPP
#define LLARP_AI_HPP
#include <crypto/types.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;
5 years ago
in6_addr ip = {};
uint16_t port;
uint64_t version = LLARP_PROTO_VERSION;
bool
BDecode(llarp_buffer_t* buf)
6 years ago
{
return bencode_decode_dict(*this, buf);
6 years ago
}
bool
BEncode(llarp_buffer_t* buf) const;
bool
DecodeKey(const llarp_buffer_t& k, llarp_buffer_t* buf);
6 years ago
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