0x01 S01PacketPong
Echoes back the exact client timestamp from C01PacketPing. The client calculates round-trip latency from the difference.
Fields
| Field | Type | Description |
|---|---|---|
| clientTime | long (8 bytes) | The exact same timestamp the client sent in C01PacketPing |
Wire Encoding
| Field | Type | Notes |
|---|---|---|
| Client Time | long | Echoed back from C01PacketPing — same System.currentTimeMillis() value |
MCP References
MCP
NetHandlerStatusClient.handlePong()Handler Interface
HND
INetHandlerStatusClientNotes
The final packet in the STATUS handshake. After receiving this, OldServerPinger closes the connection and stores the computed latency (pingToServer = currentTime - echoedTime).
implementation Implementation Cases
PingSpoof
Delay pong processing to fake higher ping in server list.