Removed expected_connection_timeout variable.

- expected_connection_timeout is unused and gone now.
This commit is contained in:
Seth Hall 2011-06-27 00:58:36 -04:00
parent ab182e792e
commit bdbfa2642c
3 changed files with 0 additions and 7 deletions

View file

@ -1443,9 +1443,6 @@ global dpd_analyzer_ports: table[port] of set[AnalyzerTag];
# Per-incident timer managers are drained after this amount of inactivity.
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.
const time_machine_profiling = F &redef;

View file

@ -239,7 +239,6 @@ int dump_used_event_handlers;
int suppress_local_output;
double timer_mgr_inactivity_timeout;
double expected_connection_timeout;
int time_machine_profiling;
@ -545,8 +544,6 @@ void init_net_var()
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");
script_id = internal_type("script_id")->AsRecordType();

View file

@ -242,7 +242,6 @@ extern int dump_used_event_handlers;
extern int suppress_local_output;
extern double timer_mgr_inactivity_timeout;
extern double expected_connection_timeout;
extern int time_machine_profiling;