1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/exit_info.hpp
2018-08-31 09:51:24 -04:00

51 lines
1,013 B
C++

#ifndef LLARP_XI_HPP
#define LLARP_XI_HPP
#include <llarp/bencode.hpp>
#include <llarp/crypto.hpp>
#include <llarp/net.h>
#include <iostream>
#include <llarp/bits.hpp>
/**
* exit_info.h
*
* utilities for handling exits on the llarp network
*/
/// Exit info model
namespace llarp
{
struct ExitInfo : public IBEncodeMessage
{
struct in6_addr address;
struct in6_addr netmask;
PubKey pubkey;
~ExitInfo();
bool
BEncode(llarp_buffer_t *buf) const;
bool
DecodeKey(llarp_buffer_t k, llarp_buffer_t *buf);
ExitInfo &
operator=(const ExitInfo &other);
friend std::ostream &
operator<<(std::ostream &out, const ExitInfo &xi)
{
char tmp[128] = {0};
if(inet_ntop(AF_INET6, &xi.address, tmp, sizeof(tmp)))
out << std::string(tmp);
else
return out;
out << std::string("/");
return out << std::to_string(
llarp::bits::count_array_bits(xi.netmask.s6_addr));
}
};
} // namespace llarp
#endif