Added structure section.

This commit is contained in:
Barra Ó Catháin 2023-08-17 00:21:20 +01:00
parent 48f0858735
commit 6ed532c368
1 changed files with 7 additions and 6 deletions

View File

@ -2,8 +2,9 @@
This document contains information about various implementation details of This document contains information about various implementation details of
SilverMUD, as a scratchpad for decisions before implementation. SilverMUD, as a scratchpad for decisions before implementation.
* Server->Client Message Format (1409 bytes total): * Structures:
** Message Type - Unsigned 8 Bit Integer: ** Server->Client Message Format (1409 bytes total):
*** Message Type - Unsigned 8 Bit Integer:
|-------+------------------------| |-------+------------------------|
| Value | Purpose | | Value | Purpose |
|-------+------------------------| |-------+------------------------|
@ -17,9 +18,9 @@ SilverMUD, as a scratchpad for decisions before implementation.
Further values remain open for possible additional message types. Further values remain open for possible additional message types.
** Sender Name - 128 Character String. *** Sender Name - 128 Character String.
** Message Content - 1024 Character String. *** Message Content - 1024 Character String.
* Client->Server Message Format (1024 bytes total): ** Client->Server Message Format (1024 bytes total):
** Message Content - 1024 Character String. *** Message Content - 1024 Character String.