18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * ieee802154 6lowpan in net namespaces 48c2ecf20Sopenharmony_ci */ 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci#include <net/inet_frag.h> 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci#ifndef __NETNS_IEEE802154_6LOWPAN_H__ 98c2ecf20Sopenharmony_ci#define __NETNS_IEEE802154_6LOWPAN_H__ 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_cistruct netns_sysctl_lowpan { 128c2ecf20Sopenharmony_ci#ifdef CONFIG_SYSCTL 138c2ecf20Sopenharmony_ci struct ctl_table_header *frags_hdr; 148c2ecf20Sopenharmony_ci#endif 158c2ecf20Sopenharmony_ci}; 168c2ecf20Sopenharmony_ci 178c2ecf20Sopenharmony_cistruct netns_ieee802154_lowpan { 188c2ecf20Sopenharmony_ci struct netns_sysctl_lowpan sysctl; 198c2ecf20Sopenharmony_ci struct fqdir *fqdir; 208c2ecf20Sopenharmony_ci}; 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_ci#endif 23