Software /
code /
prosody
Comparison
core/stanza_router.lua @ 1011:beb039827c9f
Stopped using presencemanager in stanza_router
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 15 Apr 2009 04:21:20 +0500 |
parent | 1008:da7691ebec9c |
child | 1043:ad87f555b484 |
comparison
equal
deleted
inserted
replaced
1009:a2dd83bc3afa | 1011:beb039827c9f |
---|---|
22 local s2s_make_authenticated = require "core.s2smanager".make_authenticated; | 22 local s2s_make_authenticated = require "core.s2smanager".make_authenticated; |
23 | 23 |
24 local modules_handle_stanza = require "core.modulemanager".handle_stanza; | 24 local modules_handle_stanza = require "core.modulemanager".handle_stanza; |
25 local component_handle_stanza = require "core.componentmanager".handle_stanza; | 25 local component_handle_stanza = require "core.componentmanager".handle_stanza; |
26 | 26 |
27 local handle_outbound_presence_subscriptions_and_probes = require "core.presencemanager".handle_outbound_presence_subscriptions_and_probes; | 27 local handle_outbound_presence_subscriptions_and_probes = function()end;--require "core.presencemanager".handle_outbound_presence_subscriptions_and_probes; |
28 local handle_inbound_presence_subscriptions_and_probes = require "core.presencemanager".handle_inbound_presence_subscriptions_and_probes; | 28 local handle_inbound_presence_subscriptions_and_probes = function()end;--require "core.presencemanager".handle_inbound_presence_subscriptions_and_probes; |
29 local handle_normal_presence = require "core.presencemanager".handle_normal_presence; | 29 local handle_normal_presence = function()end;--require "core.presencemanager".handle_normal_presence; |
30 | 30 |
31 local format = string.format; | 31 local format = string.format; |
32 local tostring = tostring; | 32 local tostring = tostring; |
33 local t_concat = table.concat; | 33 local t_concat = table.concat; |
34 local t_insert = table.insert; | 34 local t_insert = table.insert; |