view plugins/mod_ping.lua @ 428:e717ecc97d2e

Update mod_selftests to use the hosts on http://xmpp.org/interop/servers.shtml
author Matthew Wild <mwild1@gmail.com>
date Wed, 26 Nov 2008 18:25:03 +0000
parents 3288dd8d9669
children 193f9dd64f17
line wrap: on
line source


local st = require "util.stanza";

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

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