Skip to content

Commit

Permalink
issue #18 update
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-h committed Nov 1, 2023
1 parent a52b0fa commit c04ad61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/protocol.rst
Expand Up @@ -160,14 +160,16 @@ In general case, a client must remember the current sequence number of each stat
A: S1 S2 | S3 S4 ...
B: S3 S4 | S5 S6 ...

The connection again breaks after 2 packets of each station (A:S1, A:S2, B:S3, B:S4) have been sent, but we cannot use a single sequence number to resume all stations from the correct packet. In order to resume the connection, we need the current sequence number of each station:
The connection again breaks after 2 packets of each station (A:S1, A:S2, B:S3, B:S4) have been sent, but we cannot use a single sequence number to resume all stations from the correct packet. In order to resume the connection, we need the current sequence number of each known station. Finally we use the wildcard to request data of any additional stations that are not known yet.

::

> STATION A
> DATA 3
> STATION B
> DATA 5
> STATION *
> DATA
> END

A: S3 S4 S5 S6 ...
Expand Down

0 comments on commit c04ad61

Please sign in to comment.