# HG changeset patch # User Marco Cirillo # Date 1340668420 0 # Node ID 455a9b8fac278004d059f59754a807e4e3859ced # Parent f79fda2d7e517e2da05ed4f72c5da0c5fe732ba0 mod_host_guard: removed redundant cleanup code (tested it's completely unrequired). diff -r f79fda2d7e51 -r 455a9b8fac27 mod_host_guard/mod_host_guard.lua --- a/mod_host_guard/mod_host_guard.lua Mon Jun 25 23:26:09 2012 +0000 +++ b/mod_host_guard/mod_host_guard.lua Mon Jun 25 23:53:40 2012 +0000 @@ -64,10 +64,6 @@ local function init_hosts() for n in pairs(hosts) do - -- This is a bit redundant but better safe then sorry. - hosts[n].events.remove_handler("s2sin-established", s2s_hook) - hosts[n].events.remove_handler("route/remote", rr_hook) - hosts[n].events.remove_handler("stanza/jabber:server:dialback:result", s2s_hook) if guard_blockall:contains(n) or guard_protect:contains(n) then handle_activation(n) end end end @@ -105,4 +101,3 @@ else module:hook ("server-started", setup) end -