diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-06-05 21:39:56 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-06-05 21:39:56 +0100 |
commit | 74422d8da109484b1fa157eabd7164a8697e77b4 (patch) | |
tree | f2ca6eac446e1fc77cce9ba3b607b6331419fdc5 /plugins | |
parent | 0b1db0e26a9075aac46b46e6fc97cc502b1083b7 (diff) | |
download | prosody-74422d8da109484b1fa157eabd7164a8697e77b4.tar.gz prosody-74422d8da109484b1fa157eabd7164a8697e77b4.zip |
mod_bosh: Return errors when appropriate (invalid XML, missing sid)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_bosh.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 3c5e18f0..90522031 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -123,7 +123,10 @@ function handle_POST(event) -- In particular, the streamopened() stream callback is where -- much of the session logic happens, because it's where we first -- get to see the 'sid' of this request. - stream:feed(body); + if not stream:feed(body) then + module:log("warn", "Error parsing BOSH payload") + return 400; + end -- Stanzas (if any) in the request have now been processed, and -- we take care of the high-level BOSH logic here, including @@ -174,6 +177,8 @@ function handle_POST(event) return true; -- Inform http server we shall reply later end end + module:log("warn", "Unable to associate request with a session (incomplete request?)"); + return 400; end |