mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
Wrap threshold stuff up - fix two small bugs and update baselines.
This commit is contained in:
parent
024bb7206e
commit
b44b725d59
10 changed files with 191 additions and 184 deletions
|
@ -72,7 +72,7 @@ event ftp_request(c: connection, command: string, arg: string) &priority=4
|
|||
|
||||
event ConnThreshold::bytes_threshold_crossed(c: connection, threshold: count, is_orig: bool)
|
||||
{
|
||||
if ( threshold < size_threshold || c$duration > max_time )
|
||||
if ( threshold < size_threshold || "gridftp-data" in c$service || c$duration > max_time )
|
||||
return;
|
||||
|
||||
add c$service["gridftp-data"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue