mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
turn off debugging by default if bandwidth delay product limiting is
turned on (it is already off in -stable).
This commit is contained in:
parent
f8137bcf93
commit
c8d50f2414
2 changed files with 2 additions and 2 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue