Remove version number from copyright headers
[prosody.git] / plugins / mod_ping.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 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
11 local st = require "util.stanza";
12
13 module:add_feature("urn:xmpp:ping");
14
15 module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:ping",
16         function(session, stanza)
17                 if stanza.attr.type == "get" then
18                         session.send(st.reply(stanza));
19                 end
20         end);