]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/vlan-util.h
3d014dae3dbaaae01eb307ca7cd950b7a00a1532
[thirdparty/systemd.git] / src / shared / vlan-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 Copyright 2016 Lennart Poettering
6 ***/
7
8 #include <stdbool.h>
9 #include <inttypes.h>
10
11 #include "conf-parser.h"
12
13 #define VLANID_MAX 4094
14 #define VLANID_INVALID UINT16_MAX
15
16 /* Note that we permit VLAN Id 0 here, as that is apparently OK by the Linux kernel */
17 static inline bool vlanid_is_valid(uint16_t id) {
18 return id <= VLANID_MAX;
19 }
20
21 int parse_vlanid(const char *p, uint16_t *ret);
22
23 CONFIG_PARSER_PROTOTYPE(config_parse_default_port_vlanid);
24 CONFIG_PARSER_PROTOTYPE(config_parse_vlanid);