mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
62 lines
1.2 KiB
C++
62 lines
1.2 KiB
C++
#ifndef _WIN32
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
|
|
#include <llarp/bencode.h>
|
|
#include <llarp/exit_info.hpp>
|
|
#include <llarp/mem.h>
|
|
#include <llarp/string.h>
|
|
#include <list>
|
|
|
|
namespace llarp
|
|
{
|
|
ExitInfo::~ExitInfo()
|
|
{
|
|
}
|
|
|
|
ExitInfo&
|
|
ExitInfo::operator=(const ExitInfo& other)
|
|
{
|
|
memcpy(address.s6_addr, other.address.s6_addr, 16);
|
|
memcpy(netmask.s6_addr, other.netmask.s6_addr, 16);
|
|
pubkey = other.pubkey;
|
|
version = other.version;
|
|
return *this;
|
|
}
|
|
|
|
bool
|
|
ExitInfo::BEncode(llarp_buffer_t* buf) const
|
|
{
|
|
char tmp[128] = {0};
|
|
if(!bencode_start_dict(buf))
|
|
return false;
|
|
|
|
if(!inet_ntop(AF_INET6, &address, tmp, sizeof(tmp)))
|
|
return false;
|
|
if(!BEncodeWriteDictString("a", std::string(tmp), buf))
|
|
return false;
|
|
|
|
if(!inet_ntop(AF_INET6, &netmask, tmp, sizeof(tmp)))
|
|
return false;
|
|
if(!BEncodeWriteDictString("b", std::string(tmp), buf))
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("k", pubkey, buf))
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictInt("v", version, buf))
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
|
}
|
|
|
|
bool
|
|
ExitInfo::DecodeKey(llarp_buffer_t k, llarp_buffer_t* buf)
|
|
{
|
|
bool read = false;
|
|
// TODO: implement me
|
|
return read;
|
|
}
|
|
|
|
} // namespace llarp
|