# HG changeset patch # User Matthew Wild # Date 1227715084 0 # Node ID 3288dd8d96696c034c3912ac06812982f87ec8c9 # Parent 3d8778059e90c6a6fdee33c6a39a6b3ca3c489bd Yes, we don't put these things in here, we put them in here. diff -r 3d8778059e90 -r 3288dd8d9669 plugins/mod_ping.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/mod_ping.lua Wed Nov 26 15:58:04 2008 +0000 @@ -0,0 +1,11 @@ + +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); diff -r 3d8778059e90 -r 3288dd8d9669 util/mod_ping.lua --- a/util/mod_ping.lua Wed Nov 26 09:47:16 2008 +0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ - -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);