blob: f90aaf8d4f89affa0e05ca7707f7d415d7d3490f [file] [log] [blame]
Eric W. Biederman01891972015-03-03 19:10:47 -06001/*
2 * mpls in net namespaces
3 */
4
5#ifndef __NETNS_MPLS_H__
6#define __NETNS_MPLS_H__
7
8struct mpls_route;
9
10struct netns_mpls {
11 size_t platform_labels;
12 struct mpls_route __rcu * __rcu *platform_label;
13};
14
15#endif /* __NETNS_MPLS_H__ */