Adds action maturity to the parser

This commit is contained in:
Felipe Zimmerle
2015-09-09 22:19:07 -03:00
parent 09651baf9a
commit 1079b5ba54
2 changed files with 9 additions and 1 deletions

View File

@@ -230,6 +230,7 @@ using ModSecurity::Variables::Variable;
%token <std::string> ACTION_TAG
%token <std::string> ACTION_REV
%token <std::string> ACTION_VER
%token <std::string> ACTION_MATURITY
%token <std::string> LOG_DATA
%token <std::string> TRANSFORMATION
%token <std::string> ACTION_CTL_AUDIT_ENGINE
@@ -749,6 +750,10 @@ act:
{
$$ = Action::instantiate($1);
}
| ACTION_MATURITY
{
$$ = Action::instantiate($1);
}
| ACTION_CTL_BDY_XML
{
/* not ready yet. */