# HG changeset patch
# User Waqas Hussain <waqas20@gmail.com>
# Date 1255872418 -18000
# Node ID 8159497c86e3ef7e846dd92c4ebef6596a76a274
# Parent  1a4f14ea39b6404f4f528ac46204de0a49d42f37
mod_ping: Updated to use events (which also fixes a few minor issues).

diff -r 1a4f14ea39b6 -r 8159497c86e3 plugins/mod_ping.lua
--- a/plugins/mod_ping.lua	Sun Oct 18 18:10:05 2009 +0500
+++ b/plugins/mod_ping.lua	Sun Oct 18 18:26:58 2009 +0500
@@ -6,15 +6,16 @@
 -- COPYING file in the source package for more information.
 --
 
-
-
 local st = require "util.stanza";
 
 module:add_feature("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);
+local function ping_handler(event)
+	if event.stanza.attr.type == "get" then
+		event.origin.send(st.reply(event.stanza));
+		return true;
+	end
+end
+
+module:hook("iq/bare/urn:xmpp:ping:ping", ping_handler);
+module:hook("iq/host/urn:xmpp:ping:ping", ping_handler);