Software /
code /
prosody
Annotate
plugins/mod_disco.lua @ 457:f4701f69f459
Improved the regexp used to parse the client response a bit. Authenticating with non-ascii realm values now works.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sat, 29 Nov 2008 05:56:09 +0500 |
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); |