-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework Protocol Documentation #927
base: wiki
Are you sure you want to change the base?
Conversation
Might be better to also include "Protocol" in the page titles so that if they're embedded somewhere like Discord the link will say "Bedrock Protocol" rather than just "Bedrock". |
Got that and your prior suggestion on discord covered! |
Co-authored-by: QuazChick <[email protected]>
docs/servers/raknet.md
Outdated
| u24 (unsigned int24) | 3 | 0 - 2^24-1 | Unsigned 21-bit integer | | ||
| i64 (long) | 8 | -2^63 to 2^63-1 | Signed 64-bit integer | | ||
| bool (boolean) | 1 | 0 - 1 | `0` is `false`, while `1` is `true` | | ||
| String | N/A | | A String prefixed by a unsigned short which depicts the length | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel you should note the fact that the strings prefixed length is in Big Endian
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be covered now!
This PR reworks large chunks of the protocol documentation. Please look over it and give it a few thoughts, I dont think it is finished yet, as some sections are still marked as To be documented.
Thats also why this is a draft right now...