veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
altintegration::btc::NetAddr Struct Reference

IP address (IPv6, or IPv4 using mapped IPv6 range. More...

Detailed Description

Definition at line 58 of file net_entities.hpp.

#include <net_entities.hpp>

+ Inheritance diagram for altintegration::btc::NetAddr:
+ Collaboration diagram for altintegration::btc::NetAddr:

Public Member Functions

template<typename Stream , typename Operation >
void SerializationOp (Stream &s, Operation ser_action)
 

Public Attributes

uint8_t ip [16]
 
 ADD_SERIALIZE_METHODS
 

Friends

bool operator== (const NetAddr &a, const NetAddr &b)
 
bool operator!= (const NetAddr &a, const NetAddr &b)
 

Member Function Documentation

◆ SerializationOp()

template<typename Stream , typename Operation >
void altintegration::btc::NetAddr::SerializationOp ( Stream &  s,
Operation  ser_action 
)
inline

Definition at line 65 of file net_entities.hpp.

65 {
66 READWRITE(this->ip);
67 }

Friends And Related Function Documentation

◆ operator!=

bool operator!= ( const NetAddr a,
const NetAddr b 
)
friend

Definition at line 72 of file net_entities.hpp.

72 {
73 return !(a == b);
74 }

◆ operator==

bool operator== ( const NetAddr a,
const NetAddr b 
)
friend

Definition at line 69 of file net_entities.hpp.

69 {
70 return (memcmp(a.ip, b.ip, 16) == 0);
71 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::NetAddr::ADD_SERIALIZE_METHODS

Definition at line 62 of file net_entities.hpp.

◆ ip

uint8_t altintegration::btc::NetAddr::ip[16]

Definition at line 60 of file net_entities.hpp.


The documentation for this struct was generated from the following file: