Removing servermanager... it is no longer used

Thu, 27 Nov 2008 02:43:39 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 27 Nov 2008 02:43:39 +0000
changeset 436
979072fd3981
parent 435
4087aa611de2
child 437
c1a720db2157

Removing servermanager... it is no longer used

core/servermanager.lua file | annotate | diff | comparison | revisions
--- a/core/servermanager.lua	Wed Nov 26 23:47:23 2008 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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

mercurial