Software /
code /
prosody
Diff
plugins/mod_bosh.lua @ 1633:7812459eeed7
mod_bosh: Fix error reply for host-unknown errors
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 05 Aug 2009 03:08:21 +0100 |
parent | 1551:c6646e806d18 |
child | 1655:dc42bf326713 |
child | 1864:b9389286eece |
line wrap: on
line diff
--- a/plugins/mod_bosh.lua Wed Aug 05 03:07:45 2009 +0100 +++ b/plugins/mod_bosh.lua Wed Aug 05 03:08:21 2009 +0100 @@ -136,8 +136,8 @@ if not hosts[attr.to] then -- Unknown host log("debug", "BOSH client tried to connect to unknown host: %s", tostring(attr.to)); - session_close_reply.attr.condition = "host-unknown"; - request:send{ headers = default_headers, body = tostring(session_close_reply) }; + session_close_reply.body.attr.condition = "host-unknown"; + request:send(session_close_reply); request.notopen = nil return; end