mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
11 lines
267 B
Lua
11 lines
267 B
Lua
|
|
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);
|