mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
c80b30a71c
9 changed files with 43 additions and 9 deletions
|
@ -240,9 +240,9 @@ function listener.onconnect(conn)
|
|||
function session.data(data)
|
||||
-- Parse the data, which will store stanzas in session.pending_stanzas
|
||||
if data then
|
||||
data = filter("bytes/in", data);
|
||||
if data then
|
||||
local ok, err = stream:feed(data);
|
||||
data = filter("bytes/in", data);
|
||||
if data then
|
||||
local ok, err = stream:feed(data);
|
||||
if not ok then
|
||||
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("not-well-formed");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue