diff options
author | Susant Sahani <ssahani@gmail.com> | 2023-08-17 14:07:14 +0200 |
---|---|---|
committer | Susant Sahani <ssahani@gmail.com> | 2023-08-17 20:17:13 +0200 |
commit | 1412d4a4fea234fd2afda26b1241cd700246a672 (patch) | |
tree | b0c5ca1fb7dd0c29116b927779824ac11e0936d5 /src/network/networkd-route.h | |
parent | test: Check that SELinux policy is available before running SELinux test (#28... (diff) | |
download | systemd-1412d4a4fea234fd2afda26b1241cd700246a672.tar.xz systemd-1412d4a4fea234fd2afda26b1241cd700246a672.zip |
network: Route - allow to set TCP RTO
Diffstat (limited to '')
-rw-r--r-- | src/network/networkd-route.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/network/networkd-route.h b/src/network/networkd-route.h index 0ecabc2647..f64d081fe2 100644 --- a/src/network/networkd-route.h +++ b/src/network/networkd-route.h @@ -56,6 +56,7 @@ struct Route { unsigned flags; int gateway_onlink; /* Only used in conf parser and route_section_verify(). */ uint32_t nexthop_id; + usec_t tcp_rto_usec; bool scope_set:1; bool table_set:1; @@ -125,6 +126,7 @@ CONFIG_PARSER_PROTOTYPE(config_parse_route_protocol); CONFIG_PARSER_PROTOTYPE(config_parse_route_type); CONFIG_PARSER_PROTOTYPE(config_parse_route_tcp_window); CONFIG_PARSER_PROTOTYPE(config_parse_tcp_window); +CONFIG_PARSER_PROTOTYPE(config_parse_route_tcp_rto); CONFIG_PARSER_PROTOTYPE(config_parse_route_mtu); CONFIG_PARSER_PROTOTYPE(config_parse_multipath_route); CONFIG_PARSER_PROTOTYPE(config_parse_tcp_congestion); |