diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2008-12-24 07:42:00 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2008-12-24 07:42:00 +0000 |
commit | 3a68bc71537fa9db23476f9828e71bde9054868c (patch) | |
tree | 56da3e1851a098dc403b15ac56443169fbec9bdc /sys/netinet/ip_input.c | |
parent | 944e480d1f8030a3765a1277dffea845d1e52c56 (diff) |
report the number of packets that arp resolution is holding onto until it
gets a mac addr for an ip under net.inet.ip.arpqueued.
ok deraadt@
Diffstat (limited to 'sys/netinet/ip_input.c')
-rw-r--r-- | sys/netinet/ip_input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index 9033860ebbd..1e2d4792ef9 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_input.c,v 1.160 2008/06/08 13:58:09 thib Exp $ */ +/* $OpenBSD: ip_input.c,v 1.161 2008/12/24 07:41:59 dlg Exp $ */ /* $NetBSD: ip_input.c,v 1.30 1996/03/16 23:53:58 christos Exp $ */ /* @@ -127,6 +127,7 @@ extern int ipport_lastauto; extern int ipport_hifirstauto; extern int ipport_hilastauto; extern struct baddynamicports baddynamicports; +extern int la_hold_total; int *ipctl_vars[IPCTL_MAXID] = IPCTL_VARS; |