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

Detailed Description

Definition at line 145 of file net_entities.hpp.

+ Collaboration diagram for altintegration::btc::BanEntry:

Public Member Functions

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

Public Attributes

int32_t nVersion
 
int64_t nCreateTime
 
int64_t nBanUntil
 
uint8_t banReason
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 154 of file net_entities.hpp.

154 {
155 READWRITE(this->nVersion);
156 READWRITE(this->nCreateTime);
157 READWRITE(this->nBanUntil);
158 READWRITE(this->banReason);
159 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 165 of file net_entities.hpp.

165 {
166 return !(a == b);
167 }

◆ operator==

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

Definition at line 161 of file net_entities.hpp.

161 {
162 return a.nVersion == b.nVersion && a.nCreateTime == b.nCreateTime &&
163 a.nBanUntil == b.nBanUntil && a.banReason == b.banReason;
164 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::BanEntry::ADD_SERIALIZE_METHODS

Definition at line 151 of file net_entities.hpp.

◆ banReason

uint8_t altintegration::btc::BanEntry::banReason

Definition at line 149 of file net_entities.hpp.

◆ nBanUntil

int64_t altintegration::btc::BanEntry::nBanUntil

Definition at line 148 of file net_entities.hpp.

◆ nCreateTime

int64_t altintegration::btc::BanEntry::nCreateTime

Definition at line 147 of file net_entities.hpp.

◆ nVersion

int32_t altintegration::btc::BanEntry::nVersion

Definition at line 146 of file net_entities.hpp.


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