/// Called when the packet associated with the specified notify is known to have been received by the remote host. Packets are guaranteed to be notified in the order in which they were sent.
virtualvoidpacketReceived(PacketNotify*note)
virtualvoidpacket_received(PacketNotify*note)
{
if(mStringTable)
mStringTable->packetReceived(¬e->stringList);
mStringTable->packet_received(¬e->stringList);
}
/// Called when the packet associated with the specified notify is known to have been not received by the remote host. Packets are guaranteed to be notified in the order in which they were sent.
virtualvoidpacketDropped(PacketNotify*note)
virtualvoidpacket_dropped(PacketNotify*note)
{
if(mStringTable)
mStringTable->packetDropped(¬e->stringList);
mStringTable->packet_dropped(¬e->stringList);
}
/// Allocates a data record to track data sent on an individual packet. If you need to track additional notification information, you'll have to override this so you allocate a subclass of PacketNotify with extra fields.