Removed some legacy doc/ files.

This commit is contained in:
Waqas Hussain 2009-11-25 21:30:41 +05:00
parent 21fdef824c
commit 500ca52709
2 changed files with 0 additions and 36 deletions

View file

@ -1,9 +0,0 @@
lxmppd -> core -> rostermanager.lua
requires "util.datamanager"
module "rostermanager"
function log(type, message)
logs a message of type "rostermanager"
function getroster(username, host)
Retrieves the user's roster from the server and loads it with the datamanager

View file

@ -1,27 +0,0 @@
lxmppd -> core -> stanza_dispatch
requires "util.stanza"
requires "core.usermanager"
function init_stanza_dispatcher(session)
Initialises the stanza dispatcher which handles different stanza according
to their type and XML namespace, dispatching to required handlers.
iq_handlers["jabber:iq:auth"]
A list of handlers for "jabber:iq:auth" stanzas -- authentication
(request) stanzas.
function (stanza)
If one of username, password and resource are missing then it ????.
If not, then it validates the credentials and replies with the
appropriate stanza.
iq_handlers["jabber:iq:roster"]
A list of handlers for "jabber:iq:roster" stanzas -- roster management
function (stanza)
Parses the type of stanza for roster management and does what is
requested (roster retrieval, etc.)
function (stanza)
Validates the stanza and calls the required handler