]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/vlan-util.h
hwdb: Add mapping for Xiaomi Mipad 2 bottom bezel capacitive buttons
[thirdparty/systemd.git] / src / shared / vlan-util.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
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);
fb721f08 18int parse_vid_range(const char *p, uint16_t *vid, uint16_t *vid_end);
267fabd2 19
a2106925
LP
20CONFIG_PARSER_PROTOTYPE(config_parse_default_port_vlanid);
21CONFIG_PARSER_PROTOTYPE(config_parse_vlanid);