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>
This commit is contained in:
Poul-Henning Kamp 1998-09-06 08:17:35 +00:00
parent 99237364cc
commit 19ddafa3b3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38875
2 changed files with 4 additions and 4 deletions

View file

@ -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, "");

View file

@ -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, "");