diff options
author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-06-05 13:39:40 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2018-06-05 14:04:45 +0200 |
commit | 635ffc5c1c8da07f3f34218280d6a25a29c78bc7 (patch) | |
tree | 87abf5017a8367498ca676a21a941834296973ef /include | |
parent | 1ea6f8baa31d46088710ae02533678aa965528c2 (diff) | |
download | ouroboros-635ffc5c1c8da07f3f34218280d6a25a29c78bc7.tar.gz ouroboros-635ffc5c1c8da07f3f34218280d6a25a29c78bc7.zip |
lib: Simplify delta-t logic
This revises the delta-t implementation to align with Watson's timer
specifications. FRCT will never deliver out-of-order packets. A raw
flow (without delta-t state machine) will be able to provide such a
service.
Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be>
Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/fccntl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ouroboros/fccntl.h b/include/ouroboros/fccntl.h index 5c3fc064..bc7c7206 100644 --- a/include/ouroboros/fccntl.h +++ b/include/ouroboros/fccntl.h @@ -48,8 +48,7 @@ #define FRCTFRESCNTRL 00000001 /* Feedback from receiver */ #define FRCTFRTX 00000002 /* Reliable flow */ #define FRCTFERRCHCK 00000004 /* Check for errors */ -#define FRCTFORDERING 00000010 /* Ordered delivery */ -#define FRCTFPARTIAL 00000020 /* Allow partial delivery */ +#define FRCTFPARTIAL 00000010 /* Allow partial delivery */ /* Flow operations */ #define FLOWSRCVTIMEO 00000001 /* Set read timeout */ |