Software / code / prosody
Comparison
plugins/mod_ping.lua @ 438:193f9dd64f17
Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 27 Nov 2008 03:12:12 +0000 |
| parent | 427:3288dd8d9669 |
| child | 519:cccd610a0ef9 |
comparison
equal
deleted
inserted
replaced
| 437:c1a720db2157 | 438:193f9dd64f17 |
|---|---|
| 1 | 1 |
| 2 local st = require "util.stanza"; | 2 local st = require "util.stanza"; |
| 3 | 3 |
| 4 require "core.discomanager".set("ping", "urn:xmpp:ping"); | 4 require "core.discomanager".set("ping", "urn:xmpp:ping"); |
| 5 | 5 |
| 6 add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:ping", | 6 module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:ping", |
| 7 function(session, stanza) | 7 function(session, stanza) |
| 8 if stanza.attr.type == "get" then | 8 if stanza.attr.type == "get" then |
| 9 session.send(st.reply(stanza)); | 9 session.send(st.reply(stanza)); |
| 10 end | 10 end |
| 11 end); | 11 end); |