| 117 | } |
| 118 | |
| 119 | void ConnectionProtocol::sendAckPacket() |
| 120 | { |
| 121 | U8 buffer[16]; |
| 122 | BitStream bs(buffer, 16); |
| 123 | buildSendPacketHeader(&bs, AckPacket); |
| 124 | if(gLogToConsole) |
| 125 | Con::printf("send ack %d", mLastSendSeq); |
| 126 | |
| 127 | sendPacket(&bs); |
| 128 | } |
| 129 | |
| 130 | // packets are read directly into the data portion of |
| 131 | // connection notify packets... makes the events easier to post into |
nothing calls this directly
no test coverage detected