mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge with 0.6
This commit is contained in:
commit
21fdef824c
2 changed files with 6 additions and 1 deletions
|
@ -61,7 +61,7 @@ local function session_reset_stream(session)
|
|||
function session.data(conn, data)
|
||||
local ok, err = parser:parse(data);
|
||||
if ok then return; end
|
||||
log("debug", "Received invalid XML (%s) %d bytes: %s", tostring(err), #data, data:sub(1, 300):gsub("[\r\n]+", " "));
|
||||
log("debug", "Received invalid XML (%s) %d bytes: %s", tostring(err), #data, data:sub(1, 300):gsub("[\r\n]+", " "):gsub("[%z\1-\31]", "_"));
|
||||
session:close("xml-not-well-formed");
|
||||
end
|
||||
|
||||
|
|
|
@ -75,6 +75,11 @@ if not ssl then
|
|||
["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/";
|
||||
}, "SSL/TLS support will not be available");
|
||||
end
|
||||
else
|
||||
local major, minor, veryminor, patched = ssl._VERSION:match("(%d+)%.(%d+)%.?(%d*)(M?)");
|
||||
if not major or ((tonumber(major) == 0 and (tonumber(minor) or 0) <= 3 and (tonumber(veryminor) or 0) <= 2) and patched ~= "M") then
|
||||
log("error", "This version of LuaSec contains a known bug that causes disconnects, see http://prosody.im/doc/depends");
|
||||
end
|
||||
end
|
||||
|
||||
local encodings, err = softreq "util.encodings"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue