diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-06-09 18:55:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-06-09 18:55:16 +0200 |
commit | 267fabd2ab3c05e9899e4f238ac090b0d3943739 (patch) | |
tree | 2c43dea04dc30a6b30a360d504a1724d56a7203b /src/network/networkd-netdev-vlan.h | |
parent | 41a92c35c7c0119ef086b7d4b6d7370a638a3d7c (diff) |
networkd: clean up vlan handling a bit (#3478)
Let's add a generic parser for VLAN ids, which should become handy as
preparation for PR #3428. Let's also make sure we use uint16_t for the vlan ID
type everywhere, and that validity checks are already applied at the time of
parsing, and not only whne we about to prepare a netdev.
Also, establish a common definition VLANID_INVALID we can use for
non-initialized VLAN id fields.
Diffstat (limited to 'src/network/networkd-netdev-vlan.h')
-rw-r--r-- | src/network/networkd-netdev-vlan.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/network/networkd-netdev-vlan.h b/src/network/networkd-netdev-vlan.h index 73aacf4a0f..2dfe314b6e 100644 --- a/src/network/networkd-netdev-vlan.h +++ b/src/network/networkd-netdev-vlan.h @@ -23,12 +23,10 @@ typedef struct VLan VLan; #include "networkd-netdev.h" -#define VLANID_MAX 4094 - struct VLan { NetDev meta; - uint64_t id; + uint16_t id; }; DEFINE_NETDEV_CAST(VLAN, VLan); |