diff options
Diffstat (limited to 'lib/vlan.h')
-rw-r--r-- | lib/vlan.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/vlan.h b/lib/vlan.h new file mode 100644 index 0000000..a601046 --- /dev/null +++ b/lib/vlan.h @@ -0,0 +1,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__ */ |