blob: a601046820e4291a29035de66a3e3f09dc5eb8b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// SPDX-License-Identifier: GPL-2.0-or-later
/* VLAN (802.1q) common header.
* Copyright (C) 2016, 2017 Cumulus Networks, Inc.
*/
#ifndef __VLAN_H__
#define __VLAN_H__
#ifdef __cplusplus
extern "C" {
#endif
/* VLAN Identifier */
typedef uint16_t vlanid_t;
#define VLANID_MAX 4095
#ifdef __cplusplus
}
#endif
#endif /* __VLAN_H__ */
|