Skip to content

Session Response

Joshua Scott edited this page Sep 21, 2015 · 4 revisions

Details

Response to Session Request. Ends the connection handshake.

Sent from the server to the client when a connection is accepted.

OpCode: 0x02
Compressable: No
Encryptable No
Append CRC: No

Min Length: 19 Bytes

Packet Analysis

Details:

Name Type Byte-Order Description
Session ID uint32 Net The session ID of the client connection.
CRC Key uint32 Net This client's server-generated CRC key.
CRC Length byte N/A The length of the CRC appended to the end of a packet.
Compressable boolean N/A Can the client send compressed packets?
Encryptable boolean N/A Can the client send encrypted packets?
Buffer Size uint32 Net The server's buffer size. (Same as client)
Unknown uint32 Net It's always 3.

Example:

00 02 2A 42 D7 8E B2 A4 F1 53 03 01 00 00 00 02 00 00 00 00 03

Session ID: 0x2A42D78E
CRC Key: 0xB2A4F153
CRC Length: 0x03
Compressable: True
Encryptable: False
Buffer Size: 0x0200

Clone this wiki locally