mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 11:08:20 +00:00
17 lines
476 B
Text
17 lines
476 B
Text
##! Interface for the SQLite input reader.
|
|
##!
|
|
##! The defaults are set to match Bro's ASCII output.
|
|
|
|
module InputSQLite;
|
|
|
|
export {
|
|
## Separator between set elements.
|
|
## Please note that the separator has to be exactly one character long
|
|
const set_separator = Input::set_separator &redef;
|
|
|
|
## String to use for an unset &optional field.
|
|
const unset_field = Input::unset_field &redef;
|
|
|
|
## String to use for empty fields.
|
|
const empty_field = Input::empty_field &redef;
|
|
}
|