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

A combination of a network address (CNetAddr) and a (TCP) port. More...

Detailed Description

Definition at line 102 of file net_entities.hpp.

#include <net_entities.hpp>

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

Public Member Functions

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

uint16_t port
 
 ADD_SERIALIZE_METHODS
 
- Public Attributes inherited from altintegration::btc::NetAddr
uint8_t ip [16]
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 108 of file net_entities.hpp.

108 {
109 READWRITEAS(NetAddr, *this);
110 READWRITE(WrapBigEndian(this->port));
111 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 116 of file net_entities.hpp.

116 {
117 return !(a == b);
118 }

◆ operator==

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

Definition at line 113 of file net_entities.hpp.

113 {
114 return a.port == b.port && ((NetAddr&)a == (NetAddr&)b);
115 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::Service::ADD_SERIALIZE_METHODS

Definition at line 105 of file net_entities.hpp.

◆ port

uint16_t altintegration::btc::Service::port

Definition at line 103 of file net_entities.hpp.


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