1
0
Fork 0
mirror of https://github.com/bjc/prosody.git synced 2025-04-05 06:07:37 +03:00

Yes, we don't put these things in here, we put them in here.

This commit is contained in:
Matthew Wild 2008-11-26 15:58:04 +00:00
parent 32d1450b6f
commit af27107a9b

11
plugins/mod_ping.lua Normal file
View file

@ -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);