diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2002-01-24 22:42:50 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2002-01-24 22:42:50 +0000 |
commit | affebfba7ff72a56240a3f25cf83b7333d676eec (patch) | |
tree | b73060374cd7d4638ca05913a33bbc505583fb5d /sys/netinet/ip_var.h | |
parent | 229f438bede61cf09c0e83a91465b8185242836c (diff) |
allocate tcp reassembly queue via pool; based on netbsd; okay art@ angelos@
Diffstat (limited to 'sys/netinet/ip_var.h')
-rw-r--r-- | sys/netinet/ip_var.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 220b93416e3..9e73a1085ec 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_var.h,v 1.20 2001/06/23 05:54:50 angelos Exp $ */ +/* $OpenBSD: ip_var.h,v 1.21 2002/01/24 22:42:48 provos Exp $ */ /* $NetBSD: ip_var.h,v 1.16 1996/02/13 23:43:20 christos Exp $ */ /* @@ -165,6 +165,7 @@ int ip_defttl; /* default IP ttl */ int ip_mtudisc; /* mtu discovery */ u_int ip_mtudisc_timeout; /* seconds to timeout mtu discovery */ struct rttimer_queue *ip_mtudisc_timeout_q; +extern struct pool ipqent_pool; int ip_ctloutput __P((int, struct socket *, int, int, struct mbuf **)); int ip_dooptions __P((struct mbuf *)); |