summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-04-24 20:31:58 +0000
committerTed Trask <ttrask01@yahoo.com>2008-04-24 20:31:58 +0000
commit2072555d95b71330f49f7a157e43f1cabfd6787c (patch)
treef63cfad6a34e6e09d4d4450f8d0a41cd5992a8ca
parenta3e36b5bd1de4ad3f38bb6414fe2c0010661c4b5 (diff)
downloadacf-snort-2072555d95b71330f49f7a157e43f1cabfd6787c.tar.bz2
acf-snort-2072555d95b71330f49f7a157e43f1cabfd6787c.tar.xz
Replaced all list_redir functions with redirect in mvc.lua, implemented a default_action string in each controller, removing the on_load functions
git-svn-id: svn://svn.alpinelinux.org/acf/snort/trunk@1037 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--snort-controller.lua13
1 files changed, 1 insertions, 12 deletions
diff --git a/snort-controller.lua b/snort-controller.lua
index bc49d4a..5b0c174 100644
--- a/snort-controller.lua
+++ b/snort-controller.lua
@@ -6,12 +6,6 @@ require("posix")
-- ################################################################################
-- LOCAL FUNCTIONS
-local function list_redir(self)
- self.conf.action = "status"
- self.conf.type = "redir"
- error (self.conf)
-end
-
local function displaycmdmanagement(pidofstatus)
-- Add a management buttons
local management = {}
@@ -51,12 +45,7 @@ end
-- ################################################################################
-- PUBLIC FUNCTIONS
-mvc={}
-function mvc.on_load(self, parent)
- if (self.worker[self.conf.action] == nil ) or ( self.conf.action == "init" ) then
- self.worker[self.conf.action] = list_redir(self)
- end
-end
+default_action = "status"
function status(self)
local srvcmdresult = nil