Software /
code /
prosody
File
plugins/mod_ping.lua @ 505:1b938e00412c
Remove that idn stuff for realm because it's either an ugly hack that the password_handler isn't ready for or something worse.
author | Tobias Markmann <tm@ayena.de> |
---|---|
date | Sun, 30 Nov 2008 02:26:37 +0100 |
parent | 438:193f9dd64f17 |
child | 519:cccd610a0ef9 |
line wrap: on
line source
local st = require "util.stanza"; require "core.discomanager".set("ping", "urn:xmpp:ping"); module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:ping", function(session, stanza) if stanza.attr.type == "get" then session.send(st.reply(stanza)); end end);