summaryrefslogtreecommitdiff
path: root/src/network/networkd-link.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-04-20 16:33:00 +0200
committerLennart Poettering <lennart@poettering.net>2018-04-26 13:51:44 +0200
commit4e964aa05c4c3e305de6e9ebcb7c9a49f557effc (patch)
tree1757700d474bab8e84498bf6bc19bc72b5ec28be /src/network/networkd-link.h
parent79138a384f0c6a0d47cf97cf5a917f32ec4a9ba9 (diff)
downloadsystemd-4e964aa05c4c3e305de6e9ebcb7c9a49f557effc.tar.gz
networkd,udev: clean up MTU handling
This cleans up handling of MTU values across the codebase. Previously MTU values where stored sometimes in uint32_t, sometimes in uint16_t, sometimes unsigned and sometimes in size_t. This now unifies this to uint32_t across the codebase, as that's what netlink spits out, and what the majority was already using. Also, all MTU parameters are now parsed with config_parse_mtu() and config_parse_ipv6_mtu() is dropped as it is now unneeded. (Note there is one exception for the MTU typing: in the DCHPv4 code we continue to process the MTU as uint16_t value, as it is encoded like that in the protocol, and it's probably better stay close to the protocol there.)
Diffstat (limited to 'src/network/networkd-link.h')
-rw-r--r--src/network/networkd-link.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkd-link.h b/src/network/networkd-link.h
index c17ac3f3ce..a3ea1f8bf8 100644
--- a/src/network/networkd-link.h
+++ b/src/network/networkd-link.h
@@ -88,7 +88,7 @@ typedef struct Link {
sd_dhcp_client *dhcp_client;
sd_dhcp_lease *dhcp_lease;
char *lease_file;
- uint16_t original_mtu;
+ uint32_t original_mtu;
unsigned dhcp4_messages;
bool dhcp4_configured;
bool dhcp6_configured;