mpls.h 290 B

1234567891011121314151617
  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. size_t platform_labels;
  10. struct mpls_route __rcu * __rcu *platform_label;
  11. struct ctl_table_header *ctl;
  12. };
  13. #endif /* __NETNS_MPLS_H__ */