From 4ede9e7449f715ddfc1e1e63f58e01d65dc948ca Mon Sep 17 00:00:00 2001 From: dillon Date: Thu, 10 Oct 2002 21:41:30 +0000 Subject: [PATCH] turn off debugging by default if bandwidth delay product limiting is turned on (it is already off in -stable). --- sys/netinet/tcp_subr.c | 2 +- sys/netinet/tcp_timewait.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index fed747176ae1..181996ce65b7 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -155,7 +155,7 @@ static int tcp_inflight_enable = 0; SYSCTL_INT(_net_inet_tcp, OID_AUTO, inflight_enable, CTLFLAG_RW, &tcp_inflight_enable, 0, "Enable automatic TCP inflight data limiting"); -static int tcp_inflight_debug = 1; +static int tcp_inflight_debug = 0; SYSCTL_INT(_net_inet_tcp, OID_AUTO, inflight_debug, CTLFLAG_RW, &tcp_inflight_debug, 0, "Debug TCP inflight calculations"); diff --git a/sys/netinet/tcp_timewait.c b/sys/netinet/tcp_timewait.c index fed747176ae1..181996ce65b7 100644 --- a/sys/netinet/tcp_timewait.c +++ b/sys/netinet/tcp_timewait.c @@ -155,7 +155,7 @@ static int tcp_inflight_enable = 0; SYSCTL_INT(_net_inet_tcp, OID_AUTO, inflight_enable, CTLFLAG_RW, &tcp_inflight_enable, 0, "Enable automatic TCP inflight data limiting"); -static int tcp_inflight_debug = 1; +static int tcp_inflight_debug = 0; SYSCTL_INT(_net_inet_tcp, OID_AUTO, inflight_debug, CTLFLAG_RW, &tcp_inflight_debug, 0, "Debug TCP inflight calculations");