Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * mpls in net namespaces
0004  */
0005 
0006 #ifndef __NETNS_MPLS_H__
0007 #define __NETNS_MPLS_H__
0008 
0009 #include <linux/types.h>
0010 
0011 struct mpls_route;
0012 struct ctl_table_header;
0013 
0014 struct netns_mpls {
0015     int ip_ttl_propagate;
0016     int default_ttl;
0017     size_t platform_labels;
0018     struct mpls_route __rcu * __rcu *platform_label;
0019 
0020     struct ctl_table_header *ctl;
0021 };
0022 
0023 #endif /* __NETNS_MPLS_H__ */