mod_bosh: Fix error reply for host-unknown errors

Wed, 05 Aug 2009 03:08:21 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 05 Aug 2009 03:08:21 +0100
changeset 1633
7812459eeed7
parent 1632
4a70cbb0fad7
child 1634
46120978150c
child 1635
33d087466767

mod_bosh: Fix error reply for host-unknown errors

plugins/mod_bosh.lua file | annotate | diff | comparison | revisions
--- 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

mercurial