FileAnalysis: change terminology s/action/analyzer

This commit is contained in:
Jon Siwek 2013-04-11 14:53:54 -05:00
parent e81f2ae7b0
commit b8c98b8bf7
30 changed files with 575 additions and 570 deletions

View file

@ -229,25 +229,25 @@ type gtp_gsn_addr: record;
module FileAnalysis;
type ActionArgs: record;
type AnalyzerArgs: record;
## An enumeration of various file analysis actions that can be taken.
enum Action %{
enum Analyzer %{
## Extract a file to local filesystem
ACTION_EXTRACT,
ANALYZER_EXTRACT,
## Calculate an MD5 digest of the file's contents.
ACTION_MD5,
ANALYZER_MD5,
## Calculate an SHA1 digest of the file's contents.
ACTION_SHA1,
ANALYZER_SHA1,
## Calculate an SHA256 digest of the file's contents.
ACTION_SHA256,
ANALYZER_SHA256,
## Deliver the file contents to the script-layer in an event.
ACTION_DATA_EVENT,
ANALYZER_DATA_EVENT,
%}
module GLOBAL;