# PROTOCOL DEFINITION Messages communicated between the client and server follow the same format, but have different meanings depending on which end is the recipient. A message's intent is determined by its packet ID, a unique identifier that tells the client or server how it should react to the received message. A message id that incites bidirectional communication between the client and server should typically be associated with the same message id on the client as on the server, so as to avoid confusion. A packet of communication between the client and server is considered to be a seamlessly connected regions of bytes, the boundaries of which are defined in the header of the packet. All references to the 'byte' in this document refers to individual 8-bit octets, as is the de facto standard in modern computing. All binary-encoded multi-byte quantities sent in a packet are to be sent in network byte order (big endian). ## Header Because the body of the packet is a sequence of many different regions of byte data that is not delimited, it is necessary for the header of the packet to determine boundaries for the regions of data. * The first byte is the packet id, the meanings of which are defined in the [_Packet IDs_](#packet-ids) section. * The second byte is the number of byte regions in the packet. * The bytes following the second byte are a list of binary length segments, each of which correspond to the number of bytes in its respective region. They each follow this format: * If length is less than 254, the length of the region is stored in a single byte. * If length is greater than or equal to 254 but less than 65,536, the first byte of the lenght segment should be 254 and the following two bytes is the length of the region. * If length is greater than or equal to 65,536, the first byte of the length segment should be 255 and the following four bytes is the length of the region. The number of length segments should be equal to the number of byte regions as defined in the second byte. The length of any single section may not exceed (2^32)-1 bytes. ## Body The message body immediately follows the header with no separator, and consists of a sequence of byte regions as defined in the header that are joined together without any separator. The position of a byte region in the body should correspond to the offset of the length segment in the header. ### Numeric Packing All numbers, unless otherwise specified, are the string representation of a base 10 number. Common exceptions are listed below: * User IDs: Hex string, 8 bytes unsigned * Co-ordinates: 8 bytes, double-precision float * Big Int: Hex string, variable size ### Packet IDs A packet ID may have a specific "direction" of communication, in that an endpoint may either act as a _requester_ or a _responder_. A _requester_ is an endpoint that drives all of the communication on that specific packet ID, while the _responder_ is responsible for providing a timely response to the requests it receives. A _responder_ for a specific packet ID should never send that packet ID unsolicited; either the packet will be ignored or the other endpoint will close the connection. Any packet ID marked as bidirectional may be initiated by either endpoint at any time. #### Server to Client
ID 0: Key Exchange Requester |
# | Region | Type |
---|---|---|
1 | Generator | Big Int |
2 | Modulus | Big Int |
3 | Server Key | Big Int |
ID 1: Login Attempt [Encrypted] Responder |
# | Region | Type |
---|---|---|
1 | Check Const | String |
2 | Succeeded | Boolean |
3 | Message | String |
ID 2: Registration Attempt [Encrypted] Responder |
# | Region | Type |
---|---|---|
1 | Check Const | String |
2 | Succeeded | Boolean |
3 | Message | String |
ID 0: Key Exchange Responder |
# | Region | Type |
---|---|---|
1 | Client Key | Big Int |
ID 1: Login Attempt [Encrypted] Requester |
# | Region | Type |
---|---|---|
1 | Check Const | String |
2 | Username | String |
3 | Password | String |
ID 2: Registration Attempt [Encrypted] Requester |
# | Region | Type |
---|---|---|
1 | Check Const | String |
2 | Username | String |
3 | Password | String |
4 | String |