Make it possible to pass command line options through to scripts.

The feature is documented with the zeek_script_args variable in
init-bare.zeek.
This commit is contained in:
Seth Hall 2020-10-08 15:46:28 -04:00
parent 6902b645ba
commit 2bdc56dfcd
5 changed files with 69 additions and 2 deletions

View file

@ -74,6 +74,8 @@ struct Options {
std::set<std::string> plugins_to_load;
std::vector<std::string> scripts_to_load;
std::vector<std::string> script_options_to_set;
std::vector<std::string> script_args;
};
/**