blob: 736aeac52f56c98723901ade68b7adb0f10d2a37 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Alexander Aring633fc862014-02-28 07:32:49 +01002/*
3 * ieee802154 6lowpan in net namespaces
4 */
5
6#include <net/inet_frag.h>
7
8#ifndef __NETNS_IEEE802154_6LOWPAN_H__
9#define __NETNS_IEEE802154_6LOWPAN_H__
10
Alexander Aring7240cde2014-02-28 07:32:50 +010011struct netns_sysctl_lowpan {
12#ifdef CONFIG_SYSCTL
13 struct ctl_table_header *frags_hdr;
14#endif
15};
16
Alexander Aring633fc862014-02-28 07:32:49 +010017struct netns_ieee802154_lowpan {
Alexander Aring7240cde2014-02-28 07:32:50 +010018 struct netns_sysctl_lowpan sysctl;
19 struct netns_frags frags;
Alexander Aring633fc862014-02-28 07:32:49 +010020};
21
22#endif