plugins/mod_ping.lua

Fri, 28 Nov 2008 01:16:26 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Fri, 28 Nov 2008 01:16:26 +0500
changeset 449
c0a4a1e63d70
parent 438
193f9dd64f17
child 519
cccd610a0ef9
permissions
-rw-r--r--

Completely switched to new hashes library from the old md5 library


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