diff options
| author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2026-07-11 06:59:37 +0200 |
|---|---|---|
| committer | Sander Vrijders <sander@ouroboros.rocks> | 2026-07-19 11:44:35 +0200 |
| commit | 8ca3d5727ffd9daea27c0418d685aa31608613bd (patch) | |
| tree | 8c498bf57f6353cc2d22d1933f98a802f201930e /src/irmd | |
| parent | 8bebdf2e3e3a4ead8a728f0a594e8592457660b7 (diff) | |
| download | ouroboros-8ca3d5727ffd9daea27c0418d685aa31608613bd.tar.gz ouroboros-8ca3d5727ffd9daea27c0418d685aa31608613bd.zip | |
irmd: Fix congestion config from file
The configfile logic was matching "lfa" instead of "mb-ecn".
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/irmd')
| -rw-r--r-- | src/irmd/configfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irmd/configfile.c b/src/irmd/configfile.c index 35cf4292..5967e490 100644 --- a/src/irmd/configfile.c +++ b/src/irmd/configfile.c @@ -457,7 +457,7 @@ static int toml_congestion(toml_table_t * table, if (congestion.ok) { if (strcmp(congestion.u.s, "none") == 0) conf->cong_avoid = CA_NONE; - else if (strcmp(congestion.u.s, "lfa") == 0) + else if (strcmp(congestion.u.s, "mb-ecn") == 0) conf->cong_avoid = CA_MB_ECN; else conf->cong_avoid = CA_INVALID; |
