0.2->0.3
[prosody.git] / plugins / mod_ping.lua
1 -- Prosody IM v0.3
2 -- Copyright (C) 2008 Matthew Wild
3 -- Copyright (C) 2008 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10 \r
11 local st = require "util.stanza";\r
12 \r
13 module:add_feature("urn:xmpp:ping");\r
14 \r
15 module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:ping",\r
16         function(session, stanza)\r
17                 if stanza.attr.type == "get" then\r
18                         session.send(st.reply(stanza));\r
19                 end\r
20         end);\r