Fixes #4416 Implement recipient/endpoint shell script (#4688)

* Fixes #4416 implement shell script endpoint

* removed debugging code

* Removed for windows env
This commit is contained in:
Matteo Biscosi 2020-11-09 16:35:39 +01:00 committed by GitHub
parent a805a0501a
commit cfac78e89e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 275 additions and 0 deletions

View file

@ -0,0 +1,25 @@
--
-- (C) 2020 - ntop.org
--
--
-- Place here the checks for parameters used by this plugins
-- In essence it extends (and references) checks present in
-- scripts/lua/modules/http_lint.lua
--
local script = {}
-- ##############################################
-- @brief Called by the main http_lint module to load additional parameters.
-- @params http_lint a reference to the scripts/lua/modules/http_lint.lua module
-- @return a (possibly empty) table with parameter_name -> validator mappings
function script.getAdditionalParameters(http_lint)
return {}
end
-- ##############################################
return(script)