view plugins/mod_ping.lua @ 523:c0f15538f358

config and data directories taken from path, and quoted to allow spaces in path
author Waqas Hussain <waqas20@gmail.com>
date Wed, 03 Dec 2008 19:57:08 +0500
parents 193f9dd64f17
children cccd610a0ef9
line wrap: on
line source


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);