Add missing export blocks to init-bare.zeek

This commit is contained in:
Tim Wojtulewicz 2025-01-23 09:48:43 -07:00
parent 9b75de4e09
commit aab8f6575a

View file

@ -581,16 +581,20 @@ const running_under_test: bool = F &redef;
module FTP; module FTP;
## Limits the size of commands accepted by the FTP analyzer. Longer commands export {
## raise a FTP_max_command_length_exceeded weird and are discarded. ## Limits the size of commands accepted by the FTP analyzer. Longer commands
const max_command_length = 100 &redef; ## raise a FTP_max_command_length_exceeded weird and are discarded.
const max_command_length = 100 &redef;
}
module SMTP; module SMTP;
## The maximum line length within a BDAT chunk before a forceful linebreak export {
## is introduced and a weird is raised. Conventionally, MIME messages ## The maximum line length within a BDAT chunk before a forceful linebreak
## have a maximum line length of 1000 octets when properly encoded. ## is introduced and a weird is raised. Conventionally, MIME messages
const bdat_max_line_length = 4096 &redef; ## have a maximum line length of 1000 octets when properly encoded.
const bdat_max_line_length = 4096 &redef;
}
module TCP; module TCP;
export { export {