]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/vlan-util.h
main-func: make sure we destruct memory and stuff last
[thirdparty/systemd.git] / src / shared / vlan-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
267fabd2
LP
2#pragma once
3
267fabd2
LP
4#include <stdbool.h>
5#include <inttypes.h>
6
a2106925
LP
7#include "conf-parser.h"
8
267fabd2
LP
9#define VLANID_MAX 4094
10#define VLANID_INVALID UINT16_MAX
11
12/* Note that we permit VLAN Id 0 here, as that is apparently OK by the Linux kernel */
13static inline bool vlanid_is_valid(uint16_t id) {
14 return id <= VLANID_MAX;
15}
16
17int parse_vlanid(const char *p, uint16_t *ret);
18
a2106925
LP
19CONFIG_PARSER_PROTOTYPE(config_parse_default_port_vlanid);
20CONFIG_PARSER_PROTOTYPE(config_parse_vlanid);