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:
parent
32d1450b6f
commit
af27107a9b
1 changed files with 0 additions and 0 deletions
11
plugins/mod_ping.lua
Normal file
11
plugins/mod_ping.lua
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue