From: Kim Alvefur Date: Tue, 19 Apr 2016 10:19:15 +0000 (+0200) Subject: mod_bosh: Return a proper BOSH error response from XML parse error callback (see... X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=6a1e17435e5acda2f5b66d67bed3e3ad48becf72;p=prosody.git mod_bosh: Return a proper BOSH error response from XML parse error callback (see #343) --- diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 6ec3ff16..1f928eed 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -412,8 +412,9 @@ function stream_callbacks.error(context, error) log("debug", "Error parsing BOSH request payload; %s", error); if not context.sid then local response = context.response; - response.status_code = 400; - response:send(); + local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate", + ["xmlns:stream"] = xmlns_streams, condition = "bad-request" }); + response:send(tostring(close_reply)); return; end