From fef360b4dd88c409b5cacbed161bdd6cfd043396 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 5 Aug 2009 03:08:21 +0100 Subject: mod_bosh: Fix error reply for host-unknown errors --- plugins/mod_bosh.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/mod_bosh.lua') diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 744893c4..743ebdef 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -136,8 +136,8 @@ function stream_callbacks.streamopened(request, attr) 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 -- cgit v1.2.3