plugins/mod_ping.lua

Thu, 27 Nov 2008 03:12:12 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 27 Nov 2008 03:12:12 +0000
changeset 438
193f9dd64f17
parent 427
3288dd8d9669
child 519
cccd610a0ef9
permissions
-rw-r--r--

Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.


local st = require "util.stanza";

require "core.discomanager".set("ping", "urn:xmpp:ping");

module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:ping",
	function(session, stanza)
		if stanza.attr.type == "get" then
			session.send(st.reply(stanza));
		end
	end);

mercurial