diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-19 12:19:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-19 12:19:15 +0200 |
commit | 14f2a5d0897685aa497af6d8da15eb4d46d4edd7 (patch) | |
tree | f411a9394d03e44b705ed6019f81e16d2a71844a /plugins/mod_bosh.lua | |
parent | 354f33a769784adef8297a43150e5131e523697b (diff) | |
download | prosody-14f2a5d0897685aa497af6d8da15eb4d46d4edd7.tar.gz prosody-14f2a5d0897685aa497af6d8da15eb4d46d4edd7.zip |
mod_bosh: Return a proper BOSH error response from XML parse error callback (see #343)
Diffstat (limited to 'plugins/mod_bosh.lua')
-rw-r--r-- | plugins/mod_bosh.lua | 5 |
1 files changed, 3 insertions, 2 deletions
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 |