mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Add missing export blocks to init-bare.zeek
This commit is contained in:
parent
9b75de4e09
commit
aab8f6575a
1 changed files with 11 additions and 7 deletions
|
@ -581,16 +581,20 @@ const running_under_test: bool = F &redef;
|
||||||
|
|
||||||
module FTP;
|
module FTP;
|
||||||
|
|
||||||
|
export {
|
||||||
## Limits the size of commands accepted by the FTP analyzer. Longer commands
|
## Limits the size of commands accepted by the FTP analyzer. Longer commands
|
||||||
## raise a FTP_max_command_length_exceeded weird and are discarded.
|
## raise a FTP_max_command_length_exceeded weird and are discarded.
|
||||||
const max_command_length = 100 &redef;
|
const max_command_length = 100 &redef;
|
||||||
|
}
|
||||||
|
|
||||||
module SMTP;
|
module SMTP;
|
||||||
|
|
||||||
|
export {
|
||||||
## The maximum line length within a BDAT chunk before a forceful linebreak
|
## The maximum line length within a BDAT chunk before a forceful linebreak
|
||||||
## is introduced and a weird is raised. Conventionally, MIME messages
|
## is introduced and a weird is raised. Conventionally, MIME messages
|
||||||
## have a maximum line length of 1000 octets when properly encoded.
|
## have a maximum line length of 1000 octets when properly encoded.
|
||||||
const bdat_max_line_length = 4096 &redef;
|
const bdat_max_line_length = 4096 &redef;
|
||||||
|
}
|
||||||
|
|
||||||
module TCP;
|
module TCP;
|
||||||
export {
|
export {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue