mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
17 lines
512 B
Text
17 lines
512 B
Text
##! Interface for the SQLite log writer. Redefinable options are available
|
|
##! to tweak the output format of the SQLite reader.
|
|
|
|
module LogSQLite;
|
|
|
|
export {
|
|
## Separator between set elements.
|
|
const set_separator = Log::set_separator &redef;
|
|
|
|
## String to use for an unset &optional field.
|
|
const unset_field = Log::unset_field &redef;
|
|
|
|
## String to use for empty fields. This should be different from
|
|
## *unset_field* to make the output unambiguous.
|
|
const empty_field = Log::empty_field &redef;
|
|
}
|
|
|