mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Additional fixes for Zero TCP window detection
This commit is contained in:
parent
a091efcb09
commit
d42057baf5
5 changed files with 22 additions and 15 deletions
|
|
@ -571,7 +571,11 @@ local function formatRawFlow(record, flow_json, skip_add_links)
|
|||
local msg = ""
|
||||
|
||||
if not isEmptyString(record["flow_status"]) then
|
||||
msg = msg..flow_consts.getStatusDescription(tonumber(record["flow_status"]), status_info).." "
|
||||
local status_description = flow_consts.getStatusDescription(tonumber(record["flow_status"]), status_info)
|
||||
|
||||
if status_description then
|
||||
msg = msg..flow_consts.getStatusDescription(tonumber(record["flow_status"]), status_info).." "
|
||||
end
|
||||
end
|
||||
|
||||
if not isEmptyString(flow) then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue