]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/missing_if_bridge.h
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / basic / missing_if_bridge.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #if !HAVE_IFLA_BRIDGE_VLAN_TUNNEL_INFO /* linux@b3c7ef0adadc5768e0baa786213c6bd1ce521a77 (4.11) */
5 #define IFLA_BRIDGE_VLAN_TUNNEL_INFO 3
6
7 #undef IFLA_BRIDGE_MAX
8 #define IFLA_BRIDGE_MAX 3
9 #endif
10
11 #ifndef BRIDGE_VLAN_INFO_RANGE_BEGIN
12 #define BRIDGE_VLAN_INFO_RANGE_BEGIN (1<<3) /* VLAN is start of vlan range */
13 #endif
14
15 #ifndef BRIDGE_VLAN_INFO_RANGE_END
16 #define BRIDGE_VLAN_INFO_RANGE_END (1<<4) /* VLAN is end of vlan range */
17 #endif
18
19 #ifndef BRIDGE_VLAN_INFO_BRENTRY
20 #define BRIDGE_VLAN_INFO_BRENTRY (1<<5) /* Global bridge VLAN entry */
21 #endif