mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
21 lines
568 B
Text
21 lines
568 B
Text
##! Interface for the ascii input reader.
|
|
##!
|
|
##! The defaults are set to match Bro's ASCII output.
|
|
|
|
module InputAscii;
|
|
|
|
export {
|
|
## Separator between fields.
|
|
## Please note that the separator has to be exactly one character long
|
|
const separator = "\t" &redef;
|
|
|
|
## Separator between set elements.
|
|
## Please note that the separator has to be exactly one character long
|
|
const set_separator = "," &redef;
|
|
|
|
## String to use for empty fields.
|
|
const empty_field = "(empty)" &redef;
|
|
|
|
## String to use for an unset &optional field.
|
|
const unset_field = "-" &redef;
|
|
}
|