blob: e2070960bac009223c1c6caa1324d6323a478a7d [file] [log] [blame]
Alexander Aring633fc862014-02-28 07:32:49 +01001/*
2 * ieee802154 6lowpan in net namespaces
3 */
4
5#include <net/inet_frag.h>
6
7#ifndef __NETNS_IEEE802154_6LOWPAN_H__
8#define __NETNS_IEEE802154_6LOWPAN_H__
9
Alexander Aring7240cde2014-02-28 07:32:50 +010010struct netns_sysctl_lowpan {
11#ifdef CONFIG_SYSCTL
12 struct ctl_table_header *frags_hdr;
13#endif
14};
15
Alexander Aring633fc862014-02-28 07:32:49 +010016struct netns_ieee802154_lowpan {
Alexander Aring7240cde2014-02-28 07:32:50 +010017 struct netns_sysctl_lowpan sysctl;
18 struct netns_frags frags;
Alexander Aring48bc0342014-06-29 13:10:18 +020019 int max_dsize;
Alexander Aring633fc862014-02-28 07:32:49 +010020};
21
22#endif