mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Fix IPv6 validator
This commit is contained in:
parent
3111b4a6e7
commit
03e3613e7e
7 changed files with 29 additions and 20 deletions
|
|
@ -235,7 +235,7 @@ function historicalTopTalkersTable(ifid, epoch_begin, epoch_end, host, l7proto,
|
|||
local container_params = ' epoch_begin="" epoch_end="" host="" peer="" l7_proto_id="" l7_proto="" l4_proto_id="" l4_proto="" '
|
||||
local host_talkers_url_params = ""
|
||||
local interface_talkers_url_params = ""
|
||||
local isv6 = isIPv6Address(host)
|
||||
local isv6 = isIPv6(host)
|
||||
|
||||
interface_talkers_url_params = interface_talkers_url_params.."&epoch_begin="..epoch_begin
|
||||
interface_talkers_url_params = interface_talkers_url_params.."&epoch_end="..epoch_end
|
||||
|
|
@ -659,7 +659,7 @@ function historicalTopApplicationsTable(ifid, epoch_begin, epoch_end, host, vlan
|
|||
local breadcrumb_root = "interface"
|
||||
local container_params = ' epoch_begin="" epoch_end="" host="" peer="" l7_proto_id="" l7_proto="" l4_proto_id="" l4_proto="" '
|
||||
local top_apps_url_params=""
|
||||
local isv6 = isIPv6Address(host)
|
||||
local isv6 = isIPv6(host)
|
||||
|
||||
top_apps_url_params = top_apps_url_params.."&epoch_begin="..epoch_begin
|
||||
top_apps_url_params = top_apps_url_params.."&epoch_end="..epoch_end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue