mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Implements TCP states filtering (est., connecting, closed and rst)
Implements #2385
This commit is contained in:
parent
ae23ebcd1c
commit
9a413a5d72
9 changed files with 52 additions and 65 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue