From 15ce2d6a817b193516f024e43a075ae64d69c29c Mon Sep 17 00:00:00 2001
From: Striven <sg.striven@cutecat.club>
Date: Wed, 10 Sep 2025 19:48:32 +0000
Subject: [PATCH] Add proper headers for examples and parsing instructions
---
04_rendezvous/03_rendezvous_structure.md | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/04_rendezvous/03_rendezvous_structure.md b/04_rendezvous/03_rendezvous_structure.md
index f0b7e8f..40e5a33 100644
--- a/04_rendezvous/03_rendezvous_structure.md
+++ b/04_rendezvous/03_rendezvous_structure.md
@@ -3,12 +3,14 @@
## Common Structures
### `Buffer`
-Example:
+
+##### Example
```
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
00000000 04 00 01 02 04 05 ......
```
+##### Parsing
| Name | Description | Type |
|--------|-------------------------------------|--------------|
| Length | The length of the buffer, in bytes. | `u16` |
@@ -17,12 +19,14 @@
The length of the data is `4`, with the bytes being: `.{ 1, 2, 3, 4 }`.
### `String`
-Example:
+
+##### Example
```
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
00000000 0E 00 4C 6F 67 69 6E 50 72 6F 74 6F 63 6F 6C 00 ..LoginProtocol.
```
+##### Parsing
| Name | Description | Type |
|--------|-------------------------------------------------------------|---------------------|
| Buffer | The UTF-8 encoded, null-terminated string data as a buffer. | [`Buffer`](#buffer) |
@@ -30,18 +34,20 @@
Strings in RendezVous are null-terminated [buffers](#buffer) in UTF-8 encoding.
### `List<T>`
-Example:
+
+##### Example
```
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
00000000 01 00 00 00 12 00 43 6C 69 65 6E 74 56 65 72 73 ......ClientVers
00000010 69 6F 6E 49 6E 66 6F 00 01 00 ionInfo...
```
+##### Parsing
| Name | Description | Type |
|-----------------|---------------------------------------------|----------------------|
| Number of Items | The number of individual items in the list. | `u32` |
| Items | The items in the list. | `T[Number of Items]` |
-##' `UUID`
+### `UUID`
> TODO
\ No newline at end of file
--
Gitblit v1.10.0