diff options
| author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2026-08-16 19:46:34 +0000 |
|---|---|---|
| committer | Sander Vrijders <sander@ouroboros.rocks> | 2026-08-31 08:31:46 +0200 |
| commit | f921e50952334d99b6c25ee8df09e7fb1523e92f (patch) | |
| tree | aa25e0c1745ada1300f5c214198399d12706ec61 /src/irmd/reg/flow.c | |
| parent | 016c3c438e9b066bb45d4934ad039a49bde7014d (diff) | |
| download | ouroboros-f921e50952334d99b6c25ee8df09e7fb1523e92f.tar.gz ouroboros-f921e50952334d99b6c25ee8df09e7fb1523e92f.zip | |
lib: Update FRCT loss recovery
Some more stability fixes in FRCT.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/irmd/reg/flow.c')
| -rw-r--r-- | src/irmd/reg/flow.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/irmd/reg/flow.c b/src/irmd/reg/flow.c index 63c9199b..61e2a14b 100644 --- a/src/irmd/reg/flow.c +++ b/src/irmd/reg/flow.c @@ -172,8 +172,9 @@ int reg_flow_update(struct reg_flow * flow, assert(flow->info.n_pid != 0); assert(info->mpl != 0); - flow->info.mpl = info->mpl; - flow->info.mtu = info->mtu; + flow->info.mpl = info->mpl; + flow->info.mtu = info->mtu; + flow->info.max_rtt = info->max_rtt; if (flow->info.state == FLOW_ALLOC_PENDING) break; |
