mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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");
|
||||
|
||||
local function ping_handler(event)
|
||||
if event.stanza.attr.type == "get" then
|
||||
event.origin.send(st.reply(event.stanza));
|
||||
return true;
|
||||
end
|
||||
return event.origin.send(st.reply(event.stanza));
|
||||
end
|
||||
|
||||
module:hook("iq/bare/urn:xmpp:ping:ping", ping_handler);
|
||||
module:hook("iq/host/urn:xmpp:ping:ping", ping_handler);
|
||||
module:hook("iq-get/bare/urn:xmpp:ping:ping", ping_handler);
|
||||
module:hook("iq-get/host/urn:xmpp:ping:ping", ping_handler);
|
||||
|
||||
-- Ad-hoc command
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue