mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
Merge remote-tracking branch 'origin/topic/jazoff/fix-gridftp'
* origin/topic/jazoff/fix-gridftp: problem: gridftp threshold is being applied to all connections
This commit is contained in:
commit
39a026c88d
3 changed files with 8 additions and 1 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
2.5-310 | 2017-09-21 09:10:21 -0700
|
||||||
|
|
||||||
|
* fix interaction of gridftp scripts with other thresholds. (Justin Azoff)
|
||||||
|
|
||||||
2.5-307 | 2017-09-20 10:51:09 -0500
|
2.5-307 | 2017-09-20 10:51:09 -0500
|
||||||
|
|
||||||
* BIT-1846: Updating broctl submodule to include fix for symlinking
|
* BIT-1846: Updating broctl submodule to include fix for symlinking
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.5-307
|
2.5-310
|
||||||
|
|
|
@ -75,6 +75,9 @@ event ConnThreshold::bytes_threshold_crossed(c: connection, threshold: count, is
|
||||||
if ( threshold < size_threshold || "gridftp-data" in c$service || c$duration > max_time )
|
if ( threshold < size_threshold || "gridftp-data" in c$service || c$duration > max_time )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if ( ! data_channel_initial_criteria(c) )
|
||||||
|
return;
|
||||||
|
|
||||||
add c$service["gridftp-data"];
|
add c$service["gridftp-data"];
|
||||||
event GridFTP::data_channel_detected(c);
|
event GridFTP::data_channel_detected(c);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue