summaryrefslogtreecommitdiffstats
path: root/docs/rfc.txt
diff options
context:
space:
mode:
authorbt <bt@rctt.net>2026-05-16 22:45:42 +0200
committerbt <bt@rctt.net>2026-05-16 22:46:48 +0200
commit164428421ef950ee9572287fd9ade8876ed4bfe5 (patch)
tree452081adcd3bdba0b016fb107fd19f382387e3ea /docs/rfc.txt
parent594ed058b3cf318a9eed2a950501efdf5114b49e (diff)
downloadsolec-0.4.0.tar.gz
solec-0.4.0.zip
Update docsv0.4.0
Diffstat (limited to 'docs/rfc.txt')
-rw-r--r--docs/rfc.txt52
1 files changed, 27 insertions, 25 deletions
diff --git a/docs/rfc.txt b/docs/rfc.txt
index 4805ab7..c235666 100644
--- a/docs/rfc.txt
+++ b/docs/rfc.txt
@@ -33,7 +33,7 @@ Table of Contents
2.4.5. ServerAuth
2.4.6. Message
2.4.7. Usermode
- 2.4.8. GetHistory
+ 2.4.8. History
2.4.9. Test
2.5. Sequential operations
2.6. Client-Server connection initialisation
@@ -179,6 +179,8 @@ Table of Contents
+------+------------+------------+
| 0x07 | UserMode | C |
+------+------------+------------+
+ | 0x08 | History. | C |
+ +------+------------+------------+
| 0xFF | Test | R |
+------+------------+------------+
@@ -287,17 +289,17 @@ Table of Contents
Usermode payload is used for changing user settings related to
channels. For example: joining, leaving or setting privilages.
- +========+==============+
- | Type | Name |
- +========+==============+
- | string | user_address |
- +--------+--------------+
- | string | channel_name |
- +--------+--------------+
- | uint8 | mode |
- +--------+--------------+
+ +========+=================+
+ | Type | Name |
+ +========+=================+
+ | string | user_address |
+ +--------+-----------------+
+ | string | channel_address |
+ +--------+-----------------+
+ | uint8 | mode |
+ +--------+-----------------+
- Table 9
+ Table 9
2.4.7.1. Modes
@@ -311,7 +313,7 @@ Table of Contents
Table 10
-2.4.8. GetHistory
+2.4.8. History
Read messages previously send to a specific channel. User has to
member of the channel to perform this action. _since_ field specifies
@@ -324,19 +326,19 @@ Table of Contents
Response is just a sequence of _Message_. Client should use
_Timestamp_ field of a _Message_ to show them in corrent order.
- +===========+==============+
- | Type | Name |
- +===========+==============+
- | string | channel_name |
- +-----------+--------------+
- | timestamp | since |
- +-----------+--------------+
- | int64 | count |
- +-----------+--------------+
- | int64 | offset |
- +-----------+--------------+
-
- Table 11
+ +===========+=================+
+ | Type | Name |
+ +===========+=================+
+ | string | channel_address |
+ +-----------+-----------------+
+ | timestamp | since |
+ +-----------+-----------------+
+ | int64 | count |
+ +-----------+-----------------+
+ | int64 | offset |
+ +-----------+-----------------+
+
+ Table 11
2.4.9. Test