Public Member Functions | |
CBufferizedOutPacket (CUdpSock *client, const uint8 *packet, uint32 packetSize, uint32 delay, const CInetAddress *addr) | |
~CBufferizedOutPacket () | |
Data Fields | |
CInetAddress * | Addr |
CUdpSock * | Client |
uint8 * | Packet |
uint32 | PacketSize |
TTime | Time |
|
Definition at line 47 of file udp_sim_sock.cpp. References Addr, addr, Client, nlassert, Packet, PacketSize, uint32, and uint8.
00047 : 00048 Client(client), PacketSize(packetSize), Time(CTime::getLocalTime()+delay) 00049 { 00050 nlassert (packetSize > 0); 00051 nlassert (packet != NULL); 00052 nlassert (client != NULL); 00053 00054 Packet = new uint8[packetSize]; 00055 memcpy (Packet, packet, packetSize); 00056 00057 if (addr != NULL) 00058 { 00059 Addr = new CInetAddress; 00060 *Addr = *addr; 00061 } 00062 else 00063 { 00064 Addr = NULL; 00065 } 00066 } |
|
Definition at line 68 of file udp_sim_sock.cpp. References Addr, Client, nlassert, Packet, and PacketSize.
|
|
Definition at line 84 of file udp_sim_sock.cpp. Referenced by CBufferizedOutPacket(), NLNET::CUdpSimSock::updateBufferizedPackets(), and ~CBufferizedOutPacket(). |
|
Definition at line 80 of file udp_sim_sock.cpp. Referenced by CBufferizedOutPacket(), and ~CBufferizedOutPacket(). |
|
Definition at line 81 of file udp_sim_sock.cpp. Referenced by CBufferizedOutPacket(), NLNET::CUdpSimSock::receive(), NLNET::CUdpSimSock::updateBufferizedPackets(), and ~CBufferizedOutPacket(). |
|
Definition at line 82 of file udp_sim_sock.cpp. Referenced by CBufferizedOutPacket(), NLNET::CUdpSimSock::receive(), NLNET::CUdpSimSock::updateBufferizedPackets(), and ~CBufferizedOutPacket(). |
|
Definition at line 83 of file udp_sim_sock.cpp. Referenced by NLNET::CUdpSimSock::sendUDP(), and NLNET::CUdpSimSock::updateBufferizedPackets(). |