Implements TCP states filtering (est., connecting, closed and rst)

Implements #2385
This commit is contained in:
Simone Mainardi 2019-02-16 18:19:25 +01:00
parent ae23ebcd1c
commit 9a413a5d72
9 changed files with 52 additions and 65 deletions

View file

@ -322,7 +322,7 @@ local function validateFlowStatus(mode)
end
local function validateTCPFlowState(mode)
local modes = {"syn_only", "rst", "fin", "syn_rst_only", "fin_rst", "established_only", "not_established_only"}
local modes = { "established", "connecting", "closed", "reset" }
return validateChoice(modes, mode)
end