mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
4c6a84a00e
5 changed files with 12 additions and 18 deletions
|
@ -39,8 +39,6 @@ local listener = {};
|
|||
local runner_callbacks = {};
|
||||
|
||||
module:hook("stats-update", function ()
|
||||
-- Connection counter resets to 0 on load and reload
|
||||
-- Bump it up to current value
|
||||
local count = 0;
|
||||
for _ in pairs(sessions) do
|
||||
count = count + 1;
|
||||
|
@ -96,8 +94,8 @@ function stream_callbacks.streamopened(session, attr)
|
|||
if features.tags[1] or session.full_jid then
|
||||
send(features);
|
||||
else
|
||||
(session.log or log)("warn", "No features to offer");
|
||||
session:close{ condition = "undefined-condition", text = "No features to proceed with" };
|
||||
(session.log or log)("warn", "No stream features to offer");
|
||||
session:close{ condition = "undefined-condition", text = "No stream features to proceed with" };
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue