docs: add asn.1 packet descs to readme

This commit is contained in:
Aaron Yarborough 2025-02-19 19:52:25 +00:00
parent 9376468d19
commit 685e7fd2a5

View file

@ -22,6 +22,38 @@ For example: when authenticating, the following format is used:
All possible client and server message IDs can be found in `Networking/Enums/ClientPacketIn.cs` or `Networking/Enums/ServerPacketIn.cs` respectively.
### Packets
*AuthMessage*
```asn.1
AuthMessage ::= SEQUENCE {
messageId INTEGER (0..255),
usernameLen INTEGER (0..255),
username OCTET STRING (SIZE (0..usernameLen)),
passwordLen INTEGER (0..255),
password OCTET STRING (SIZE (0..passwordLen))
}
```
*ListServerMessage* (TODO)
```asn.1
ServerListingBlock ::= SEQUENCE {
name OCTET STRING (SIZE (50)),
description OCTET STRING (SIZE (1000)),
playercount INTEGER (0..65535),
ip OCTET STRING (SIZE (15)),
port INTEGER (0..65535),
serverTier INTEGER (0..255)
}
ServerListing ::= SEQUENCE {
messageId INTEGER (0..255),
...
}
```
## Projects
The repo is made up of the following projects: