fix warnings, update baselines, handle rotation

This commit is contained in:
Bernhard Amann 2013-05-12 20:48:17 -07:00
parent 747ba68030
commit 6392acecd2
7 changed files with 83 additions and 52 deletions

View file

@ -0,0 +1,17 @@
##! 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;
}