diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2020-09-28 20:04:57 +0200 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2020-10-11 14:08:34 +0200 |
commit | 3aec660e814f470cc9453e69231cbe3102fd2a4c (patch) | |
tree | 3075ac64b73783d0a2bbf74100e7711f0bef86e9 /src/lib/dev.c | |
parent | 57e8b5f8b933e6d405d6d81127da5813d7760371 (diff) | |
download | ouroboros-3aec660e814f470cc9453e69231cbe3102fd2a4c.tar.gz ouroboros-3aec660e814f470cc9453e69231cbe3102fd2a4c.zip |
lib: Add compiler configuration for FRCP
This allows configuring some parameters for FRCP at compile time, such
as default values for Delta-t and configuration of the timerwheel. The
timerwheel will now reschedule when it fails to create a packet,
instead of setting the flow down immediately. Some new things added
are options to store packets for retransmission on the heap, and using
non-blocking calls for retransmission. The defaults do not change the
current behaviour.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/lib/dev.c')
-rw-r--r-- | src/lib/dev.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/dev.c b/src/lib/dev.c index 5cf23639..ed377367 100644 --- a/src/lib/dev.c +++ b/src/lib/dev.c @@ -63,7 +63,6 @@ #define SECMEMSZ 16384 #define SYMMKEYSZ 32 #define MSGBUFSZ 2048 -#define TICTIME 1000000 /* ns */ struct flow_set { size_t idx; @@ -801,7 +800,7 @@ int flow_dealloc(int fd) timeo = frcti_dealloc(f->frcti); - if (ret == -ETIMEDOUT && timeo < 0) + if ((ret == -ETIMEDOUT || ret == -EFLOWDOWN) && timeo < 0) timeo = -timeo; } |