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

Detailed Description

Definition at line 121 of file net_entities.hpp.

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

Public Member Functions

template<typename Stream , typename Operation >
void SerializationOp (Stream &s, Operation ser_action)
 
- Public Member Functions inherited from altintegration::btc::Service
template<typename Stream , typename Operation >
void SerializationOp (Stream &s, Operation ser_action)
 
- Public Member Functions inherited from altintegration::btc::NetAddr
template<typename Stream , typename Operation >
void SerializationOp (Stream &s, Operation ser_action)
 

Public Attributes

ServiceFlags nServices
 
uint32_t nTime
 
 ADD_SERIALIZE_METHODS
 
- Public Attributes inherited from altintegration::btc::Service
uint16_t port
 
 ADD_SERIALIZE_METHODS
 
- Public Attributes inherited from altintegration::btc::NetAddr
uint8_t ip [16]
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 129 of file net_entities.hpp.

129 {
130 uint64_t nServicesInt = nServices;
131 READWRITE(nTime);
132 READWRITE(nServicesInt);
133 nServices = static_cast<ServiceFlags>(nServicesInt);
134 READWRITEAS(Service, *this);
135 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 140 of file net_entities.hpp.

140 {
141 return !(a == b);
142 }

◆ operator==

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

Definition at line 137 of file net_entities.hpp.

137 {
138 return (a.nTime == b.nTime) && ((Service&)a == (Service&)b);
139 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::Address::ADD_SERIALIZE_METHODS

Definition at line 126 of file net_entities.hpp.

◆ nServices

ServiceFlags altintegration::btc::Address::nServices

Definition at line 122 of file net_entities.hpp.

◆ nTime

uint32_t altintegration::btc::Address::nTime

Definition at line 124 of file net_entities.hpp.


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