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

Detailed Description

Definition at line 77 of file net_entities.hpp.

+ Collaboration diagram for altintegration::btc::SubNet:

Public Member Functions

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

Public Attributes

NetAddr network
 Network (base) address. More...
 
uint8_t netmask [16]
 Netmask, in network byte order. More...
 
bool valid
 Is this value valid? (only used to signal parse errors) More...
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 88 of file net_entities.hpp.

88 {
89 READWRITE(this->network);
90 READWRITE(this->netmask);
91 READWRITE(this->valid);
92 }
bool valid
Is this value valid? (only used to signal parse errors)
NetAddr network
Network (base) address.
uint8_t netmask[16]
Netmask, in network byte order.

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 98 of file net_entities.hpp.

98{ return !(a == b); }

◆ operator==

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

Definition at line 94 of file net_entities.hpp.

94 {
95 return a.valid == b.valid && a.network == b.network &&
96 0 == memcmp(a.netmask, b.netmask, 16);
97 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::SubNet::ADD_SERIALIZE_METHODS

Definition at line 85 of file net_entities.hpp.

◆ netmask

uint8_t altintegration::btc::SubNet::netmask[16]

Definition at line 81 of file net_entities.hpp.

◆ network

NetAddr altintegration::btc::SubNet::network

Definition at line 79 of file net_entities.hpp.

◆ valid

bool altintegration::btc::SubNet::valid

Definition at line 83 of file net_entities.hpp.


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