mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Switch GridFTP options from redef to option
This commit is contained in:
parent
7ec480f05d
commit
93c094fff2
1 changed files with 3 additions and 3 deletions
|
@ -30,15 +30,15 @@ module GridFTP;
|
||||||
export {
|
export {
|
||||||
## Number of bytes transferred before guessing a connection is a
|
## Number of bytes transferred before guessing a connection is a
|
||||||
## GridFTP data channel.
|
## GridFTP data channel.
|
||||||
const size_threshold = 1073741824 &redef;
|
option size_threshold = 1073741824;
|
||||||
|
|
||||||
## Time during which we check whether a connection's size exceeds the
|
## Time during which we check whether a connection's size exceeds the
|
||||||
## :bro:see:`GridFTP::size_threshold`.
|
## :bro:see:`GridFTP::size_threshold`.
|
||||||
const max_time = 2 min &redef;
|
option max_time = 2 min;
|
||||||
|
|
||||||
## Whether to skip further processing of the GridFTP data channel once
|
## Whether to skip further processing of the GridFTP data channel once
|
||||||
## detected, which may help performance.
|
## detected, which may help performance.
|
||||||
const skip_data = T &redef;
|
option skip_data = T;
|
||||||
|
|
||||||
## Raised when a GridFTP data channel is detected.
|
## Raised when a GridFTP data channel is detected.
|
||||||
##
|
##
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue