mpls.h 397 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * mpls in net namespaces
  4. */
  5. #ifndef __NETNS_MPLS_H__
  6. #define __NETNS_MPLS_H__
  7. #include <linux/types.h>
  8. struct mpls_route;
  9. struct ctl_table_header;
  10. struct netns_mpls {
  11. int ip_ttl_propagate;
  12. int default_ttl;
  13. size_t platform_labels;
  14. struct mpls_route __rcu * __rcu *platform_label;
  15. struct ctl_table_header *ctl;
  16. };
  17. #endif /* __NETNS_MPLS_H__ */