| 106 | } |
| 107 | |
| 108 | void ConnectionProtocol::sendPingPacket() |
| 109 | { |
| 110 | U8 buffer[16]; |
| 111 | BitStream bs(buffer, 16); |
| 112 | buildSendPacketHeader(&bs, PingPacket); |
| 113 | if(gLogToConsole) |
| 114 | Con::printf("send ping %d", mLastSendSeq); |
| 115 | |
| 116 | sendPacket(&bs); |
| 117 | } |
| 118 | |
| 119 | void ConnectionProtocol::sendAckPacket() |
| 120 | { |
nothing calls this directly
no test coverage detected