summaryrefslogtreecommitdiff
path: root/sys/netinet/if_ether.h
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2015-03-24 12:58:44 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2015-03-24 12:58:44 +0000
commit4159cf6077f56ff2eb64edbd851274adbe9b60e2 (patch)
treeb1ba12ae36d82531a88452b88ef1245da809d184 /sys/netinet/if_ether.h
parent25e0d8815e3e55ef54e94355ae20745087d056ec (diff)
Convert hand-rolled mbuf list used to store packets until ARP
resolution is completed to ml_init(9) API. Tested by kspillner@, inputs & ok dlg@
Diffstat (limited to 'sys/netinet/if_ether.h')
-rw-r--r--sys/netinet/if_ether.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/netinet/if_ether.h b/sys/netinet/if_ether.h
index bf1383be55f..96760712c62 100644
--- a/sys/netinet/if_ether.h
+++ b/sys/netinet/if_ether.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ether.h,v 1.54 2014/12/05 15:50:04 mpi Exp $ */
+/* $OpenBSD: if_ether.h,v 1.55 2015/03/24 12:58:43 mpi Exp $ */
/* $NetBSD: if_ether.h,v 1.22 1996/05/11 13:00:00 mycroft Exp $ */
/*
@@ -164,17 +164,6 @@ struct arpcom {
int ac_multirangecnt; /* number of mcast ranges */
};
-
-struct llinfo_arp {
- LIST_ENTRY(llinfo_arp) la_list;
- struct rtentry *la_rt;
- struct mbuf *la_hold_head; /* packet hold queue */
- struct mbuf *la_hold_tail;
- int la_hold_count; /* number of packets queued */
- long la_asked; /* last time we QUERIED for this addr */
-};
-#define MAX_HOLD_QUEUE 10
-#define MAX_HOLD_TOTAL 100
#endif
struct sockaddr_inarp {