mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 23:28:20 +00:00
Removed expected_connection_timeout variable.
- expected_connection_timeout is unused and gone now.
This commit is contained in:
parent
ab182e792e
commit
bdbfa2642c
3 changed files with 0 additions and 7 deletions
|
@ -1443,9 +1443,6 @@ global dpd_analyzer_ports: table[port] of set[AnalyzerTag];
|
||||||
# Per-incident timer managers are drained after this amount of inactivity.
|
# Per-incident timer managers are drained after this amount of inactivity.
|
||||||
const timer_mgr_inactivity_timeout = 1 min &redef;
|
const timer_mgr_inactivity_timeout = 1 min &redef;
|
||||||
|
|
||||||
# Time-out for expected connections.
|
|
||||||
const expected_connection_timeout = 5 min &redef;
|
|
||||||
|
|
||||||
# If true, output profiling for time-machine queries.
|
# If true, output profiling for time-machine queries.
|
||||||
const time_machine_profiling = F &redef;
|
const time_machine_profiling = F &redef;
|
||||||
|
|
||||||
|
|
|
@ -239,7 +239,6 @@ int dump_used_event_handlers;
|
||||||
int suppress_local_output;
|
int suppress_local_output;
|
||||||
|
|
||||||
double timer_mgr_inactivity_timeout;
|
double timer_mgr_inactivity_timeout;
|
||||||
double expected_connection_timeout;
|
|
||||||
|
|
||||||
int time_machine_profiling;
|
int time_machine_profiling;
|
||||||
|
|
||||||
|
@ -545,8 +544,6 @@ void init_net_var()
|
||||||
|
|
||||||
timer_mgr_inactivity_timeout =
|
timer_mgr_inactivity_timeout =
|
||||||
opt_internal_double("timer_mgr_inactivity_timeout");
|
opt_internal_double("timer_mgr_inactivity_timeout");
|
||||||
expected_connection_timeout =
|
|
||||||
opt_internal_double("expected_connection_timeout");
|
|
||||||
time_machine_profiling = opt_internal_int("time_machine_profiling");
|
time_machine_profiling = opt_internal_int("time_machine_profiling");
|
||||||
|
|
||||||
script_id = internal_type("script_id")->AsRecordType();
|
script_id = internal_type("script_id")->AsRecordType();
|
||||||
|
|
|
@ -242,7 +242,6 @@ extern int dump_used_event_handlers;
|
||||||
extern int suppress_local_output;
|
extern int suppress_local_output;
|
||||||
|
|
||||||
extern double timer_mgr_inactivity_timeout;
|
extern double timer_mgr_inactivity_timeout;
|
||||||
extern double expected_connection_timeout;
|
|
||||||
|
|
||||||
extern int time_machine_profiling;
|
extern int time_machine_profiling;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue