Feature:Supported Rule-Set

This commit is contained in:
Skyxim
2021-12-02 22:56:17 +08:00
parent c7b257b188
commit c6f923041f
13 changed files with 1012 additions and 16 deletions

View File

@ -13,6 +13,7 @@ const (
DstPort
Process
Script
RuleSet
MATCH
)
@ -44,6 +45,8 @@ func (rt RuleType) String() string {
return "Script"
case MATCH:
return "Match"
case RuleSet:
return "RuleSet"
default:
return "Unknown"
}