From 6ed532c3688360ba6aed5abfb83392ce7b000216 Mon Sep 17 00:00:00 2001 From: Barry Kane Date: Thu, 17 Aug 2023 00:21:20 +0100 Subject: [PATCH] Added structure section. --- notes/SilverMUD-Implementation.org | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/notes/SilverMUD-Implementation.org b/notes/SilverMUD-Implementation.org index 3b63935..0c7e57b 100644 --- a/notes/SilverMUD-Implementation.org +++ b/notes/SilverMUD-Implementation.org @@ -2,8 +2,9 @@ This document contains information about various implementation details of SilverMUD, as a scratchpad for decisions before implementation. -* Server->Client Message Format (1409 bytes total): -** Message Type - Unsigned 8 Bit Integer: +* Structures: +** Server->Client Message Format (1409 bytes total): +*** Message Type - Unsigned 8 Bit Integer: |-------+------------------------| | Value | Purpose | |-------+------------------------| @@ -17,9 +18,9 @@ SilverMUD, as a scratchpad for decisions before implementation. 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): -** Message Content - 1024 Character String. +** Client->Server Message Format (1024 bytes total): +*** Message Content - 1024 Character String.