mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Fix reporter errors with GridFTP traffic.
This commit is contained in:
parent
659de2b357
commit
582da62d04
3 changed files with 6 additions and 2 deletions
|
@ -86,7 +86,7 @@ event gridftp_possibility_timeout(c: connection)
|
|||
{
|
||||
# only remove if we did not already detect it and the connection
|
||||
# is not yet at its end.
|
||||
if ( "gridftp-data" !in c$service && ! c$conn?$service )
|
||||
if ( "gridftp-data" !in c$service && ! (c?$conn && c$conn?$service) )
|
||||
{
|
||||
ConnThreshold::delete_bytes_threshold(c, size_threshold, T);
|
||||
ConnThreshold::delete_bytes_threshold(c, size_threshold, F);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue