Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | /* | ||||
3 | * mpls in net namespaces | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef __NETNS_MPLS_H__ | ||||
7 | #define __NETNS_MPLS_H__ | ||||
8 | |||||
9 | struct mpls_route; | ||||
10 | struct ctl_table_header; | ||||
11 | |||||
12 | struct netns_mpls { | ||||
13 | int ip_ttl_propagate; | ||||
14 | int default_ttl; | ||||
15 | size_t platform_labels; | ||||
16 | struct mpls_route __rcu * __rcu *platform_label; | ||||
17 | |||||
18 | struct ctl_table_header *ctl; | ||||
19 | }; | ||||
20 | |||||
21 | #endif /* __NETNS_MPLS_H__ */ |