mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
99237364cc
commit
19ddafa3b3
2 changed files with 4 additions and 4 deletions
|
|
@ -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, "");
|
||||
|
||||
|
|
|
|||
|
|
@ -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, "");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue