diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-11-25 17:40:24 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-11-25 17:40:24 +0000 |
commit | 8c7f9073d37f1fa826fd63f165e63c91d24c2996 (patch) | |
tree | 54a977f9f601366ceacb964582802b4a5ebf0965 /doc | |
parent | 2bf3510fef8741dcdd355de1d2b6c4f6e44c70df (diff) | |
parent | bdd5151bc7c2f7d6873ca0fa2b06962567811b79 (diff) | |
download | prosody-8c7f9073d37f1fa826fd63f165e63c91d24c2996.tar.gz prosody-8c7f9073d37f1fa826fd63f165e63c91d24c2996.zip |
Merge with trunk
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lxmppd_core_rostermanager.txt | 9 | ||||
-rw-r--r-- | doc/lxmppd_core_stanz_dispatch.txt | 27 |
2 files changed, 0 insertions, 36 deletions
diff --git a/doc/lxmppd_core_rostermanager.txt b/doc/lxmppd_core_rostermanager.txt deleted file mode 100644 index 4f501158..00000000 --- a/doc/lxmppd_core_rostermanager.txt +++ /dev/null @@ -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
\ No newline at end of file diff --git a/doc/lxmppd_core_stanz_dispatch.txt b/doc/lxmppd_core_stanz_dispatch.txt deleted file mode 100644 index 15bb730b..00000000 --- a/doc/lxmppd_core_stanz_dispatch.txt +++ /dev/null @@ -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 - |