Disable TCP Congestion Window Monitoring by default; there are
performance problems in the face of tinygrams.
This commit is contained in:
parent
9368c444df
commit
8038dd2cbe
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: tcp_output.c,v 1.82 2002/06/09 16:33:44 itojun Exp $ */
|
||||
/* $NetBSD: tcp_output.c,v 1.83 2002/06/13 16:31:05 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
|
||||
@ -142,7 +142,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: tcp_output.c,v 1.82 2002/06/09 16:33:44 itojun Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: tcp_output.c,v 1.83 2002/06/13 16:31:05 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "opt_ipsec.h"
|
||||
@ -199,7 +199,7 @@ extern struct mbuf *m_copypack();
|
||||
* the burst size it allows. Default burst is 4 packets, per
|
||||
* the Internet draft.
|
||||
*/
|
||||
int tcp_cwm = 1;
|
||||
int tcp_cwm = 0;
|
||||
int tcp_cwm_burstsize = 4;
|
||||
|
||||
#ifdef TCP_OUTPUT_COUNTERS
|
||||
|
Loading…
Reference in New Issue
Block a user