From e56dcba9d31838f9e6ef9b54563446bfdca24c44 Mon Sep 17 00:00:00 2001 From: mihi <mihi> Date: Thu, 8 Apr 2004 18:23:48 +0000 Subject: [PATCH] update protocol (formal things) [mihi] --- apps/ministreaming/doc/protocol.txt | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/apps/ministreaming/doc/protocol.txt b/apps/ministreaming/doc/protocol.txt index d7fe7d35c9..a2b1380025 100644 --- a/apps/ministreaming/doc/protocol.txt +++ b/apps/ministreaming/doc/protocol.txt @@ -1,5 +1,5 @@ -ministreaming protocol: -******************* +ministreaming protocol +********************** Each message looks like the following @@ -15,9 +15,11 @@ These IDs may be any 3-byte values except 00 00 00, which is reserved. All connections are created as PROP_RELIABILITY_GUARANTEED. -"actions" are the things a proper tunnel implementation SHOULD do -when it receives such a message. +"actions" are the things a proper ministreaming implementation SHOULD +do when it receives such a message. +A "ministreaming connection" is a connection where the user of the +library can send data into or receive from. Client->Server: =============== @@ -25,13 +27,13 @@ Client->Server: 0xA0 Send data id: the server id payload: the data to send - actions: send the data to the TCP connection + actions: send the data to the ministreaming connection 0xA1 SYN id: the client id payload: the public key dynamically created by the client - actions: create a server ID and create a TCP connection. When successful, - send an ACK back, otherwise a close. + actions: create a server ID and create a ministreaming connection. When + successful, send an ACK back, otherwise a close. 0xA2 Close id: the server id @@ -44,7 +46,7 @@ Server->Client 0x50 Send data id: the client id payload: the data to send - actions: send the data to the TCP connection + actions: send the data to the ministreaming connection 0x51 ACK id: the client id -- GitLab