]> git.proxmox.com Git - mirror_frr.git/blob - lib/vlan.h
*: auto-convert to SPDX License IDs
[mirror_frr.git] / lib / vlan.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* VLAN (802.1q) common header.
3 * Copyright (C) 2016, 2017 Cumulus Networks, Inc.
4 */
5
6 #ifndef __VLAN_H__
7 #define __VLAN_H__
8
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12
13 /* VLAN Identifier */
14 typedef uint16_t vlanid_t;
15 #define VLANID_MAX 4095
16
17 #ifdef __cplusplus
18 }
19 #endif
20
21 #endif /* __VLAN_H__ */