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_usrreq.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_usrreq.c')
-rw-r--r-- | sys/netinet/tcp_usrreq.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index c1a167a37a5..1b415e25294 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_usrreq.c,v 1.75 2004/01/06 17:38:13 markus Exp $ */ +/* $OpenBSD: tcp_usrreq.c,v 1.76 2004/01/29 11:55:28 markus Exp $ */ /* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */ /* @@ -931,6 +931,9 @@ tcp_sysctl(name, namelen, oldp, oldlenp, newp, newlen) case TCPCTL_SYN_BUCKET_LIMIT: return (sysctl_int(oldp, oldlenp, newp, newlen, &tcp_syn_bucket_limit)); + case TCPCTL_RFC3390: + return (sysctl_int(oldp, oldlenp, newp, newlen, + &tcp_do_rfc3390)); default: return (ENOPROTOOPT); } |