core/servermanager.lua

Wed, 26 Nov 2008 01:46:16 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Wed, 26 Nov 2008 01:46:16 +0500
changeset 416
7cc2d8a8ae97
parent 336
d97d59cfd1e8
permissions
-rw-r--r--

Added util-src/hashes.c - support for sha1, sha256 and md5 hashes


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