struct EE::Network::TcpSocket::PendingPacket¶
Overview¶
Structure holding the data of a pending packet. More…
struct PendingPacket { // fields Uint32 Size; std::size_t SizeReceived; std::vector<char> Data; };
Detailed Documentation¶
Structure holding the data of a pending packet.
Fields¶
Uint32 Size
Data of packet size.
std::size_t SizeReceived
Number of size bytes received so far.
std::vector<char> Data
Data of the packet.