Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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 int ip_ttl_propagate;
13 int default_ttl;
14 size_t platform_labels;
15 struct mpls_route __rcu * __rcu *platform_label;
16
17 struct ctl_table_header *ctl;
18};
19
20#endif /* __NETNS_MPLS_H__ */