Software /
code /
prosody
Changeset
1011:beb039827c9f
Stopped using presencemanager in stanza_router
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 15 Apr 2009 04:21:20 +0500 |
parents | 1009:a2dd83bc3afa |
children | 1012:d53108635407 |
files | core/stanza_router.lua plugins/mod_presence.lua |
diffstat | 2 files changed, 4 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/core/stanza_router.lua Wed Apr 15 02:10:51 2009 +0500 +++ b/core/stanza_router.lua Wed Apr 15 04:21:20 2009 +0500 @@ -24,9 +24,9 @@ local modules_handle_stanza = require "core.modulemanager".handle_stanza; local component_handle_stanza = require "core.componentmanager".handle_stanza; -local handle_outbound_presence_subscriptions_and_probes = require "core.presencemanager".handle_outbound_presence_subscriptions_and_probes; -local handle_inbound_presence_subscriptions_and_probes = require "core.presencemanager".handle_inbound_presence_subscriptions_and_probes; -local handle_normal_presence = require "core.presencemanager".handle_normal_presence; +local handle_outbound_presence_subscriptions_and_probes = function()end;--require "core.presencemanager".handle_outbound_presence_subscriptions_and_probes; +local handle_inbound_presence_subscriptions_and_probes = function()end;--require "core.presencemanager".handle_inbound_presence_subscriptions_and_probes; +local handle_normal_presence = function()end;--require "core.presencemanager".handle_normal_presence; local format = string.format; local tostring = tostring;
--- a/plugins/mod_presence.lua Wed Apr 15 02:10:51 2009 +0500 +++ b/plugins/mod_presence.lua Wed Apr 15 04:21:20 2009 +0500 @@ -243,7 +243,7 @@ if to == nil and stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error" then handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza); elseif not to then - handle_normal_presence(origin, stanza); + handle_normal_presence(origin, stanza, core_route_stanza); else core_route_stanza(origin, stanza); end @@ -263,5 +263,3 @@ module.unload = function() remove_handler(module:get_host().."/presence", presence_handler); end - -return _M;