diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-04-15 04:21:20 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-04-15 04:21:20 +0500 |
commit | 85faabc6f4c7ef61a843063562cc76d040cd3ff1 (patch) | |
tree | 40c8268b409c17cf2fb49b2d06360e68f749b4a1 /core | |
parent | 6857f81a91e1368f8ec4280af4e64b2169e3cbb7 (diff) | |
download | prosody-85faabc6f4c7ef61a843063562cc76d040cd3ff1.tar.gz prosody-85faabc6f4c7ef61a843063562cc76d040cd3ff1.zip |
Stopped using presencemanager in stanza_router
Diffstat (limited to 'core')
-rw-r--r-- | core/stanza_router.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 7d3b50b5..f5a19307 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -24,9 +24,9 @@ local s2s_make_authenticated = require "core.s2smanager".make_authenticated; 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; |