Software /
code /
prosody
File
plugins/mod_ping.lua @ 427:3288dd8d9669
Yes, we don't put these things in here, we put them in here.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 26 Nov 2008 15:58:04 +0000 |
parent | 425:util/mod_ping.lua@f3b65866192e |
child | 438:193f9dd64f17 |
line wrap: on
line source
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);