diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2002-01-15 19:18:02 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2002-01-15 19:18:02 +0000 |
commit | 5f65bca299e5b97c1c3d9b0a20062984e598b981 (patch) | |
tree | 8f4cbab1a166614cee49c69214e31885076c946d /sys/netinet/tcp_var.h | |
parent | 0d1a73158f9cc3967f00bd711bfe59ac87de9d45 (diff) |
allocate sackholes with pool
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index fd7a7e2c2d6..87d9f95b6a7 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.37 2001/06/23 06:03:13 angelos Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.38 2002/01/15 19:18:01 provos Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -326,6 +326,7 @@ extern int tcp_do_rfc1323; /* enabled/disabled? */ extern int tcp_mssdflt; /* default maximum segment size */ #ifdef TCP_SACK extern int tcp_do_sack; /* SACK enabled/disabled */ +extern struct pool sackhl_pool; #endif int tcp_attach __P((struct socket *)); |