blob: 95406e1342cb54ee1f421b68e2feb1c421b2a768 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2/*
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
11struct netns_sysctl_lowpan {
12#ifdef CONFIG_SYSCTL
13 struct ctl_table_header *frags_hdr;
14#endif
15};
16
17struct netns_ieee802154_lowpan {
18 struct netns_sysctl_lowpan sysctl;
David Brazdil0f672f62019-12-10 10:32:29 +000019 struct fqdir *fqdir;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000020};
21
22#endif