Update receive modes authored by Andreas Schmidt's avatar Andreas Schmidt
......@@ -8,6 +8,8 @@ In this mode, packets are delivered as soon as they have been successfully recei
## Ordered
In this mode, the `target_delay` that was specified at socket creation is considered and packets are delivered when they are due (sending time + `target_delay`). The receive calls allow to specify a time window that gives how early (relative to the deadline) a packet should be considered for delivery. Larger time windows reduce the portion of `target_delay` that can be used for reordering and error correction. Lower time windows might lead to lost packets due to expiry, if the application does not receive the packets fast enough from the delivery buffer.
## Synchronized, Gap-Preserving
TODO: Not yet implemented.
## Blocking, Non-Blocking, Timed
Each mode comes with the following calls:
......
......