mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
More options for the ASCII writer.
# The prefix for the header line if included. const header_prefix = "# " &redef; # The string to use for empty string fields. const empty_field = "" &redef; # The string to use for an unset optional field. const unset_field = "-" &redef;
This commit is contained in:
parent
cb9e0a5d5a
commit
b69ecff3ee
7 changed files with 95 additions and 8 deletions
|
@ -31,8 +31,18 @@ private:
|
|||
// Options from the script-level
|
||||
bool output_to_stdout;
|
||||
bool include_header;
|
||||
|
||||
char* separator;
|
||||
int separator_len;
|
||||
|
||||
char* empty_field;
|
||||
int empty_field_len;
|
||||
|
||||
char* unset_field;
|
||||
int unset_field_len;
|
||||
|
||||
char* header_prefix;
|
||||
int header_prefix_len;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue