]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - net/netfilter/nf_sysctl.c
[NETFILTER]: nf_conntrack_sctp: remove timeout indirection
[mirror_ubuntu-zesty-kernel.git] / net / netfilter / nf_sysctl.c
CommitLineData
d62f9ed4
PM
1/* nf_sysctl.c netfilter sysctl registration/unregistation
2 *
3 * Copyright (c) 2006 Patrick McHardy <kaber@trash.net>
4 */
5#include <linux/module.h>
6#include <linux/sysctl.h>
7#include <linux/string.h>
8#include <linux/slab.h>
9
d62f9ed4 10/* net/netfilter */
b3fd3ffe
PE
11struct ctl_path nf_net_netfilter_sysctl_path[] = {
12 { .procname = "net", .ctl_name = CTL_NET, },
13 { .procname = "netfilter", .ctl_name = NET_NETFILTER, },
14 { }
d62f9ed4
PM
15};
16EXPORT_SYMBOL_GPL(nf_net_netfilter_sysctl_path);
17
18/* net/ipv4/netfilter */
b3fd3ffe
PE
19struct ctl_path nf_net_ipv4_netfilter_sysctl_path[] = {
20 { .procname = "net", .ctl_name = CTL_NET, },
21 { .procname = "ipv4", .ctl_name = NET_IPV4, },
22 { .procname = "netfilter", .ctl_name = NET_IPV4_NETFILTER, },
23 { }
d62f9ed4
PM
24};
25EXPORT_SYMBOL_GPL(nf_net_ipv4_netfilter_sysctl_path);