diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-11-26 09:06:32 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-11-26 09:06:32 +0500 |
commit | d0481af8e07fbbc49b586680511cdd94525eb01e (patch) | |
tree | 192e431446efabfd41aebbe2d4e0230c36526616 /util/mod_ping.lua | |
parent | c3404c96e21bdacc09a33912d547b23c7e3119ae (diff) | |
download | prosody-d0481af8e07fbbc49b586680511cdd94525eb01e.tar.gz prosody-d0481af8e07fbbc49b586680511cdd94525eb01e.zip |
Added mod_ping with support for [XEP-0199: XMPP Ping]
Diffstat (limited to 'util/mod_ping.lua')
-rw-r--r-- | util/mod_ping.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/util/mod_ping.lua b/util/mod_ping.lua new file mode 100644 index 00000000..c13282ff --- /dev/null +++ b/util/mod_ping.lua @@ -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);
|