mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_ping: Use type-specific event
This commit is contained in:
parent
73f394eec5
commit
a4f64d4c8b
1 changed files with 3 additions and 6 deletions
|
@ -11,14 +11,11 @@ local st = require "util.stanza";
|
||||||
module:add_feature("urn:xmpp:ping");
|
module:add_feature("urn:xmpp:ping");
|
||||||
|
|
||||||
local function ping_handler(event)
|
local function ping_handler(event)
|
||||||
if event.stanza.attr.type == "get" then
|
return event.origin.send(st.reply(event.stanza));
|
||||||
event.origin.send(st.reply(event.stanza));
|
|
||||||
return true;
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
module:hook("iq/bare/urn:xmpp:ping:ping", ping_handler);
|
module:hook("iq-get/bare/urn:xmpp:ping:ping", ping_handler);
|
||||||
module:hook("iq/host/urn:xmpp:ping:ping", ping_handler);
|
module:hook("iq-get/host/urn:xmpp:ping:ping", ping_handler);
|
||||||
|
|
||||||
-- Ad-hoc command
|
-- Ad-hoc command
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue