Software / code / prosody
Annotate
plugins/mod_disco.lua @ 454:21105a005eef
Merge from waqas
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 28 Nov 2008 18:06:29 +0000 |
| parent | 438:193f9dd64f17 |
| child | 519:cccd610a0ef9 |
| rev | line source |
|---|---|
| 389 | 1 |
| 2 local discomanager_handle = require "core.discomanager".handle; | |
| 3 | |
|
421
63be85693710
Modules now sending disco replies
Waqas Hussain <waqas20@gmail.com>
parents:
389
diff
changeset
|
4 require "core.discomanager".set("disco", "http://jabber.org/protocol/disco#info"); |
|
63be85693710
Modules now sending disco replies
Waqas Hussain <waqas20@gmail.com>
parents:
389
diff
changeset
|
5 require "core.discomanager".set("disco", "http://jabber.org/protocol/disco#items"); |
|
63be85693710
Modules now sending disco replies
Waqas Hussain <waqas20@gmail.com>
parents:
389
diff
changeset
|
6 |
|
438
193f9dd64f17
Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
Matthew Wild <mwild1@gmail.com>
parents:
421
diff
changeset
|
7 module:add_iq_handler({"c2s", "s2sin"}, "http://jabber.org/protocol/disco#info", function (session, stanza) |
| 389 | 8 session.send(discomanager_handle(stanza)); |
| 9 end); | |
|
438
193f9dd64f17
Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
Matthew Wild <mwild1@gmail.com>
parents:
421
diff
changeset
|
10 module:add_iq_handler({"c2s", "s2sin"}, "http://jabber.org/protocol/disco#items", function (session, stanza) |
| 389 | 11 session.send(discomanager_handle(stanza)); |
| 12 end); |