mpls.h 371 B

12345678910111213141516171819202122
  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. struct mpls_route;
  8. struct ctl_table_header;
  9. struct netns_mpls {
  10. int ip_ttl_propagate;
  11. int default_ttl;
  12. size_t platform_labels;
  13. struct mpls_route __rcu * __rcu *platform_label;
  14. struct ctl_table_header *ctl;
  15. };
  16. #endif /* __NETNS_MPLS_H__ */