diff options
author | phk <phk@FreeBSD.org> | 1998-09-06 08:17:35 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1998-09-06 08:17:35 +0000 |
commit | 554e90e43f0f027b232f480d48e793fa29cbb0dd (patch) | |
tree | f50a087175bcfe58210b9cfc3e01e51ac02e206e /sys/netinet/tcp_subr.c | |
parent | b9386dfd70628078e594d978a5f89ffc314add64 (diff) | |
download | FreeBSD-src-554e90e43f0f027b232f480d48e793fa29cbb0dd.zip FreeBSD-src-554e90e43f0f027b232f480d48e793fa29cbb0dd.tar.gz |
RFC 1644 has the status "Experimental Protocol", which means:
4.1.4. Experimental Protocol
A system should not implement an experimental protocol unless it
is participating in the experiment and has coordinated its use of
the protocol with the developer of the protocol.
Pointed out by: Steinar Haug <sthaug@nethelp.no>
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 74c630b..c1c29e4 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_subr.c 8.2 (Berkeley) 5/24/95 - * $Id: tcp_subr.c,v 1.45 1998/05/15 20:11:35 wollman Exp $ + * $Id: tcp_subr.c,v 1.46 1998/08/24 07:47:39 dfr Exp $ */ #include "opt_compat.h" @@ -81,7 +81,7 @@ static int tcp_do_rfc1323 = 1; SYSCTL_INT(_net_inet_tcp, TCPCTL_DO_RFC1323, rfc1323, CTLFLAG_RW, &tcp_do_rfc1323 , 0, ""); -static int tcp_do_rfc1644 = 1; +static int tcp_do_rfc1644 = 0; SYSCTL_INT(_net_inet_tcp, TCPCTL_DO_RFC1644, rfc1644, CTLFLAG_RW, &tcp_do_rfc1644 , 0, ""); |