diff options
author | 2004-01-29 11:55:28 +0000 | |
---|---|---|
committer | 2004-01-29 11:55:28 +0000 | |
commit | 8892ccdfd5026a4041d92d5393f614f3f879ff6c (patch) | |
tree | cd5fea5f5b200964feb31c11e5765dffbf640da6 /sys/netinet/tcp_subr.c | |
parent | Map the raven, pcic, and isa/pci io space virtual rather than 1:1. (diff) | |
download | wireguard-openbsd-8892ccdfd5026a4041d92d5393f614f3f879ff6c.tar.xz wireguard-openbsd-8892ccdfd5026a4041d92d5393f614f3f879ff6c.zip |
support for RFC3390 (Increasing TCP's Initial Window); ok deraadt, itojun
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 6d308645b00..ddd9c25d1ab 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.73 2004/01/09 12:22:30 markus Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.74 2004/01/29 11:55:28 markus Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -131,6 +131,7 @@ int tcp_do_rfc1323 = TCP_DO_RFC1323; int tcp_do_sack = TCP_DO_SACK; /* RFC 2018 selective ACKs */ int tcp_ack_on_push = 0; /* set to enable immediate ACK-on-PUSH */ int tcp_do_ecn = 0; /* RFC3168 ECN enabled/disabled? */ +int tcp_do_rfc3390 = 0; /* RFC3390 Increasing TCP's Initial Window */ u_int32_t tcp_now; |