mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 11:08:20 +00:00
Remove the Stepping Stone analyzer
This commit removes the stepping stone analyzer. It has been deactivated by default since at least Zeek 2.0, is dysfunctional in cluster settings and has a bunch of other issued. Relates to GH-1573
This commit is contained in:
parent
41b077d2cf
commit
011ac442a1
17 changed files with 0 additions and 428 deletions
|
@ -157,9 +157,6 @@ int dns_skip_all_auth;
|
|||
int dns_skip_all_addl;
|
||||
int dns_max_queries;
|
||||
|
||||
double stp_delta;
|
||||
double stp_idle_min;
|
||||
|
||||
double table_expire_interval;
|
||||
double table_expire_delay;
|
||||
int table_incremental_step;
|
||||
|
@ -312,11 +309,6 @@ void init_net_var()
|
|||
dns_skip_all_addl = id::find_val("dns_skip_all_addl")->AsBool();
|
||||
dns_max_queries = id::find_val("dns_max_queries")->AsCount();
|
||||
|
||||
stp_delta = 0.0;
|
||||
if ( const auto& v = id::find_val("stp_delta") ) stp_delta = v->AsInterval();
|
||||
stp_idle_min = 0.0;
|
||||
if ( const auto& v = id::find_val("stp_idle_min") ) stp_delta = v->AsInterval();
|
||||
|
||||
orig_addr_anonymization = 0;
|
||||
if ( const auto& id = id::find("orig_addr_anonymization") )
|
||||
if ( const auto& v = id->GetVal() )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue