Annotate
core/servermanager.lua @ 38:3fdfd6e0cb4e
SASL!
(but before you get too excited, no resource binding yet. And yes, there are still plenty of rough edges to the code...)
((eg. must move <stream:features> out of xmlhandlers.lua o_O ))
author |
Matthew Wild <mwild1@gmail.com> |
date |
Thu, 02 Oct 2008 01:08:58 +0100 |
parent |
30:bcf539295f2d |
child |
43:03dc9df59368 |
rev |
line source |
30
|
1
|
|
2 require "modulemanager"
|
|
3
|
|
4 -- Handle stanzas that were addressed to the server (whether they came from c2s, s2s, etc.)
|
|
5 function handle_stanza(origin, stanza)
|
|
6 -- Use plugins
|
|
7 return modulemanager.handle_stanza(origin, stanza);
|
|
8 end
|