ntopng/scripts/lua/modules/alert_definitions/flow/alert_udp_unidirectional.lua
2022-01-03 09:42:33 +01:00

38 lines
957 B
Lua

--
-- (C) 2019-22 - ntop.org
--
-- ##############################################
local flow_alert_keys = require "flow_alert_keys"
-- Import the classes library.
local classes = require "classes"
-- Make sure to import the Superclass!
local alert = require "alert"
-- ##############################################
local alert_udp_unidirectional = classes.class(alert)
-- ##############################################
alert_udp_unidirectional.meta = {
alert_key = flow_alert_keys.flow_alert_udp_unidirectional,
i18n_title = "flow_details.udp_unidirectional",
icon = "fas fa-fw fa-info-circle",
}
-- ##############################################
-- @brief Prepare an alert table used to generate the alert
-- @return A table with the alert built
function alert_udp_unidirectional:init()
-- Call the parent constructor
self.super:init()
end
-- #######################################################
return alert_udp_unidirectional