/** * Writes next queued message to socket. If capacity of write buffer * is exceeded, writes part of the message only. */ void tcConnectionData::WriteQueuedMessages() { WriteTCP(); WriteUDP(); }
void MainWindow::ProcessPacket(packet p) { PrintPacketInfo(p); WriteUDP(p); }