diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-08-22 09:06:01 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-08-22 15:02:59 +0200 |
commit | 9475e23c90c111e6a97b2ea2253c3c11e912a2eb (patch) | |
tree | a0a8b44abf714fcabd6a88a6ec772cf1074e6ccd /test | |
parent | Merge pull request #28914 from poettering/boot-poweroff (diff) | |
download | systemd-9475e23c90c111e6a97b2ea2253c3c11e912a2eb.tar.xz systemd-9475e23c90c111e6a97b2ea2253c3c11e912a2eb.zip |
network: several follow-ups for TCP-RTO setting
- rename TCPRetransmissionTimeOutSec= -> TCPRetransmissionTimeoutSec,
- refuse infinity,
- fix the input value verifier (USEC_PER_SEC -> USEC_PER_MSEC),
- use DIV_ROUND_UP() when assigning the value.
Follow-ups for 1412d4a4fea234fd2afda26b1241cd700246a672.
Closes #28898.
Diffstat (limited to 'test')
-rw-r--r-- | test/test-network/conf/25-route-congctl.network | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-network/conf/25-route-congctl.network b/test/test-network/conf/25-route-congctl.network index 2af783ad14..44db736d01 100644 --- a/test/test-network/conf/25-route-congctl.network +++ b/test/test-network/conf/25-route-congctl.network @@ -10,9 +10,9 @@ Address=149.10.124.58/28 [Route] Destination=2001:1234:5:8fff:ff:ff:ff:ff/128 TCPCongestionControlAlgorithm=dctcp -TCPRetransmissionTimeOutSec=300s +TCPRetransmissionTimeoutSec=300s [Route] Destination=149.10.124.66 TCPCongestionControlAlgorithm=dctcp -TCPRetransmissionTimeOutSec=300s +TCPRetransmissionTimeoutSec=300s |