![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
Message header. More...
#include <protocol.h>
Public Member Functions | |
CMessageHeader () | |
CMessageHeader (const char *pszCommand, unsigned int nMessageSizeIn) | |
std::string | GetCommand () const |
bool | IsValid () const |
Public Attributes | |
IMPLEMENT_SERIALIZE(READWRITE(FLATDATA(pchMessageStart));READWRITE(FLATDATA(pchCommand));READWRITE(nMessageSize);READWRITE(nChecksum);) public char | pchMessageStart [MESSAGE_START_SIZE] |
char | pchCommand [COMMAND_SIZE] |
unsigned int | nMessageSize |
unsigned int | nChecksum |
Message header.
(4) message start. (12) command. (4) size. (4) checksum.
Definition at line 33 of file protocol.h.
CMessageHeader::CMessageHeader | ( | ) |
Definition at line 23 of file protocol.cpp.
CMessageHeader::CMessageHeader | ( | const char * | pszCommand, |
unsigned int | nMessageSizeIn | ||
) |
Definition at line 32 of file protocol.cpp.
std::string CMessageHeader::GetCommand | ( | ) | const |
Definition at line 40 of file protocol.cpp.
bool CMessageHeader::IsValid | ( | ) | const |
Definition at line 48 of file protocol.cpp.
unsigned int CMessageHeader::nChecksum |
Definition at line 65 of file protocol.h.
unsigned int CMessageHeader::nMessageSize |
Definition at line 64 of file protocol.h.
char CMessageHeader::pchCommand[COMMAND_SIZE] |
Definition at line 63 of file protocol.h.
IMPLEMENT_SERIALIZE ( READWRITE(FLATDATA(pchMessageStart)); READWRITE(FLATDATA(pchCommand)); READWRITE(nMessageSize); READWRITE(nChecksum); ) public char CMessageHeader::pchMessageStart[MESSAGE_START_SIZE] |
Definition at line 43 of file protocol.h.