1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
2633fc86fSAlexander Aring /*
3633fc86fSAlexander Aring  * ieee802154 6lowpan in net namespaces
4633fc86fSAlexander Aring  */
5633fc86fSAlexander Aring 
6633fc86fSAlexander Aring #include <net/inet_frag.h>
7633fc86fSAlexander Aring 
8633fc86fSAlexander Aring #ifndef __NETNS_IEEE802154_6LOWPAN_H__
9633fc86fSAlexander Aring #define __NETNS_IEEE802154_6LOWPAN_H__
10633fc86fSAlexander Aring 
117240cdecSAlexander Aring struct netns_sysctl_lowpan {
127240cdecSAlexander Aring #ifdef CONFIG_SYSCTL
137240cdecSAlexander Aring 	struct ctl_table_header *frags_hdr;
147240cdecSAlexander Aring #endif
157240cdecSAlexander Aring };
167240cdecSAlexander Aring 
17633fc86fSAlexander Aring struct netns_ieee802154_lowpan {
187240cdecSAlexander Aring 	struct netns_sysctl_lowpan sysctl;
194907abc6SEric Dumazet 	struct fqdir		*fqdir;
20633fc86fSAlexander Aring };
21633fc86fSAlexander Aring 
22633fc86fSAlexander Aring #endif
23