aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-27 02:43:39 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-27 02:43:39 +0000
commit576e14b6f7ae13e6c409065112c4610a27cb89bb (patch)
tree4a3cbfda9356357a5e707d951b3d5173047c6412 /core
parent7d402ac968ddd9bada9b9ddc5953293322881fb1 (diff)
downloadprosody-576e14b6f7ae13e6c409065112c4610a27cb89bb.tar.gz
prosody-576e14b6f7ae13e6c409065112c4610a27cb89bb.zip
Removing servermanager... it is no longer used
Diffstat (limited to 'core')
-rw-r--r--core/servermanager.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/core/servermanager.lua b/core/servermanager.lua
deleted file mode 100644
index 8cbf2f12..00000000
--- a/core/servermanager.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-
-local st = require "util.stanza";
-local xmlns_stanzas ='urn:ietf:params:xml:ns:xmpp-stanzas';
-
-local modulemanager = require "core.modulemanager";
-
--- Handle stanzas that were addressed to the server (whether they came from c2s, s2s, etc.)
-function handle_stanza(origin, stanza)
- -- Use plugins
- if not modulemanager.handle_stanza(origin, stanza) then
- if stanza.name == "iq" then
- if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then
- origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
- end
- elseif stanza.name == "message" then
- origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
- elseif stanza.name ~= "presence" then
- error("Unknown stanza");
- end
- end
-end