mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39: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
|
|
@ -2052,7 +2052,7 @@ function printActiveFlowsDropdown(base_url, page_params, ifstats, ndpistats)
|
|||
<li><a href="]] print(getPageUrl(base_url, tcp_state_params)) print[[">]] print(i18n("flows_page.all_flows")) print[[</a></li>\]]
|
||||
|
||||
local entries = {}
|
||||
for _, entry in pairs({"syn_only", "rst", "fin", "syn_rst_only", "fin_rst", "established_only", "not_established_only" }) do
|
||||
for _, entry in pairs({"established", "connecting", "closed", "reset"}) do
|
||||
entries[#entries + 1] = {entry, tcp_flow_state_utils.state2i18n(entry)}
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue