mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +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
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
2.4-beta-42 | 2015-06-08 09:41:39 -0700
|
||||||
|
|
||||||
|
* Fix reporter errors with GridFTP traffic. (Robin Sommer)
|
||||||
|
|
||||||
2.4-beta-40 | 2015-06-06 08:20:52 -0700
|
2.4-beta-40 | 2015-06-06 08:20:52 -0700
|
||||||
|
|
||||||
* PE Analyzer: Change how we calculate the rva_table size. (Vlad Grigorescu)
|
* PE Analyzer: Change how we calculate the rva_table size. (Vlad Grigorescu)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.4-beta-40
|
2.4-beta-42
|
||||||
|
|
|
@ -86,7 +86,7 @@ event gridftp_possibility_timeout(c: connection)
|
||||||
{
|
{
|
||||||
# only remove if we did not already detect it and the connection
|
# only remove if we did not already detect it and the connection
|
||||||
# is not yet at its end.
|
# 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, T);
|
||||||
ConnThreshold::delete_bytes_threshold(c, size_threshold, F);
|
ConnThreshold::delete_bytes_threshold(c, size_threshold, F);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue