Go to the source code of this file.
Defines | |
#define | AFX_PACKET_H__3094C1CC_8AD2_49BD_BF10_EA639A9EAE6F__INCLUDED_ |
#define | SWAP_SHORT(x) ( ( ( (x) & 0xFF00 ) >> 8 ) + ( ( (x) & 0x00FF ) << 8 ) ) |
#define | SWAP_LONG(x) ( ( ( (x) & 0xFF000000 ) >> 24 ) + ( ( (x) & 0x00FF0000 ) >> 8 ) + ( ( (x) & 0x0000FF00 ) << 8 ) + ( ( (x) & 0x000000FF ) << 24 ) ) |
#define | SWAP_64(x) ( ( SWAP_LONG( (x) & 0xFFFFFFFF ) << 32 ) | SWAP_LONG( (x) >> 32 ) ) |
#define | PACKET_GROW 128 |
#define | PACKET_BUF_SCHAR 127 |
#define | PACKET_BUF_WCHAR 127 |
#define | SHAREAZA_VENDOR_A VENDOR_CODE |
#define | SHAREAZA_VENDOR_T _T( VENDOR_CODE ) |
|
|
|
Definition at line 45 of file Packet.h. Referenced by CPacket::WriteString(), CG2Packet::WriteString(), and CPacket::WriteStringUTF8(). |
|
|
|
Definition at line 42 of file Packet.h. Referenced by CPacket::Ensure(), CPacket::Write(), and CPacket::WriteGetPointer(). |
|
Definition at line 49 of file Packet.h. Referenced by CLocalSearch::CreatePacketG2(), CG2Neighbour::SendHAW(), and CG2Neighbour::SendLNI(). |
|
Definition at line 50 of file Packet.h. Referenced by CG1Neighbour::OnClusterAdvisor(), CShakeNeighbour::OnHeaderLine(), CG1Neighbour::OnPong(), and CLocalSearch::WriteTrailerG1(). |
|
Definition at line 39 of file Packet.h. Referenced by CPacket::ReadInt64(), and CPacket::WriteInt64(). |
|
|
Definition at line 33 of file Packet.h. Referenced by CPacket::ReadShortBE(), and CPacket::WriteShortBE(). |