Linux Audio

Check our new training course

Loading...
v4.6
 
 1/*
 2 * mpls in net namespaces
 3 */
 4
 5#ifndef __NETNS_MPLS_H__
 6#define __NETNS_MPLS_H__
 7
 
 
 8struct mpls_route;
 9struct ctl_table_header;
10
11struct netns_mpls {
 
 
12	size_t platform_labels;
13	struct mpls_route __rcu * __rcu *platform_label;
 
14	struct ctl_table_header *ctl;
15};
16
17#endif /* __NETNS_MPLS_H__ */
v6.8
 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#include <linux/types.h>
10
11struct mpls_route;
12struct ctl_table_header;
13
14struct netns_mpls {
15	int ip_ttl_propagate;
16	int default_ttl;
17	size_t platform_labels;
18	struct mpls_route __rcu * __rcu *platform_label;
19
20	struct ctl_table_header *ctl;
21};
22
23#endif /* __NETNS_MPLS_H__ */