mpls.h 332 B

1234567891011121314151617181920
  1. /*
  2. * mpls in net namespaces
  3. */
  4. #ifndef __NETNS_MPLS_H__
  5. #define __NETNS_MPLS_H__
  6. struct mpls_route;
  7. struct ctl_table_header;
  8. struct netns_mpls {
  9. int ip_ttl_propagate;
  10. int default_ttl;
  11. size_t platform_labels;
  12. struct mpls_route __rcu * __rcu *platform_label;
  13. struct ctl_table_header *ctl;
  14. };
  15. #endif /* __NETNS_MPLS_H__ */