aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorNeil Horman <nhorman@tuxdriver.com>2006-03-21 01:39:47 -0500
committerDavid S. Miller <davem@davemloft.net>2006-03-21 01:39:47 -0500
commitabd596a4b68b6526c2676233e10602dd9660e9d7 (patch)
tree4122bd7fc36c18ffb762ea8ae6d5c794c1924222 /include/linux
parent59f1741e541bf4f6139599389610a70de49c3ad2 (diff)
[IPV4] ARP: Alloc acceptance of unsolicited ARP via netdevice sysctl.
Signed-off-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/inetdevice.h1
-rw-r--r--include/linux/sysctl.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/inetdevice.h b/include/linux/inetdevice.h
index fd7af86151b1..92297ff24e85 100644
--- a/include/linux/inetdevice.h
+++ b/include/linux/inetdevice.h
@@ -25,6 +25,7 @@ struct ipv4_devconf
25 int arp_filter; 25 int arp_filter;
26 int arp_announce; 26 int arp_announce;
27 int arp_ignore; 27 int arp_ignore;
28 int arp_accept;
28 int medium_id; 29 int medium_id;
29 int no_xfrm; 30 int no_xfrm;
30 int no_policy; 31 int no_policy;
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h
index dfcf449afc7c..8754568a75d7 100644
--- a/include/linux/sysctl.h
+++ b/include/linux/sysctl.h
@@ -456,6 +456,7 @@ enum
456 NET_IPV4_CONF_ARP_ANNOUNCE=18, 456 NET_IPV4_CONF_ARP_ANNOUNCE=18,
457 NET_IPV4_CONF_ARP_IGNORE=19, 457 NET_IPV4_CONF_ARP_IGNORE=19,
458 NET_IPV4_CONF_PROMOTE_SECONDARIES=20, 458 NET_IPV4_CONF_PROMOTE_SECONDARIES=20,
459 NET_IPV4_CONF_ARP_ACCEPT=21,
459 __NET_IPV4_CONF_MAX 460 __NET_IPV4_CONF_MAX
460}; 461};
461 462