# HG changeset patch # User Matthew Wild # Date 1240453511 -3600 # Node ID 8c2d88cda1dd3d25075daacb4873644a20a7fd56 # Parent 6fef969ff30718c07229fb8c7747b44bc5c9ef64 mod_bosh: Fix nil indexing when client connects to unknown host diff -r 6fef969ff307 -r 8c2d88cda1dd plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Thu Apr 23 02:55:31 2009 +0100 +++ b/plugins/mod_bosh.lua Thu Apr 23 03:25:11 2009 +0100 @@ -102,7 +102,7 @@ local function bosh_reset_stream(session) session.notopen = true; end -local session_close_reply = { headers = default_headers, body = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate" }) }; +local session_close_reply = { headers = default_headers, body = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate" }), attr = {} }; local function bosh_close_stream(session, reason) (session.log or log)("info", "BOSH client disconnected"); session_close_reply.attr.condition = reason;