Defined in file: hzBasedefs.h
Each hzPacket has a buffer capable of holding the data in a single IP packet, plus a pointer to the next instance. hzPacket is intended to form links in a rolling chain, in effect a queue. Two such rolling chains are operated by the hzTcpConnex class, an instance of which exists for each connected client.
Constructors/Detructors
| hzPacket* | hzPacket | (void) | |
| Default constructor | hzPacket() | Not specified in code. Default applies |
Member Variables:
| char* | m_data | Buffer for writing | |
| uint32_t | m_msgId | Message ID | |
| uint32_t | m_seq | Position of packet in data stream | |
| uint32_t | m_size | No of bytes in this packet | |
| hzPacket* | next | Next in series |