diff options
author | Kim Alvefur <zash@zash.se> | 2013-04-25 17:50:22 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-04-25 17:50:22 +0200 |
commit | b50dc4174b59176cd9baff6c81936c7dde56b69b (patch) | |
tree | 0317d1a3f9a7bcb5113a46249f32a3f4381a8195 /plugins/mod_c2s.lua | |
parent | 0cba3cd26003a0b17465353ebb7a159d02ad7056 (diff) | |
download | prosody-b50dc4174b59176cd9baff6c81936c7dde56b69b.tar.gz prosody-b50dc4174b59176cd9baff6c81936c7dde56b69b.zip |
mod_c2s: Refactor <stream:error> building to allways tostring() it and only call send once
Diffstat (limited to 'plugins/mod_c2s.lua')
-rw-r--r-- | plugins/mod_c2s.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index cafd0c71..efef8763 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -133,25 +133,25 @@ local function session_close(session, reason) session.send(st.stanza("stream:stream", default_stream_attr):top_tag()); end if reason then -- nil == no err, initiated by us, false == initiated by client + local stream_error = st.stanza("stream:error"); if type(reason) == "string" then -- assume stream error - log("debug", "Disconnecting client, <stream:error> is: %s", reason); - session.send(st.stanza("stream:error"):tag(reason, {xmlns = 'urn:ietf:params:xml:ns:xmpp-streams' })); + stream_error:tag(reason, {xmlns = 'urn:ietf:params:xml:ns:xmpp-streams' }); elseif type(reason) == "table" then if reason.condition then - local stanza = st.stanza("stream:error"):tag(reason.condition, stream_xmlns_attr):up(); + stream_error:tag(reason.condition, stream_xmlns_attr):up(); if reason.text then - stanza:tag("text", stream_xmlns_attr):text(reason.text):up(); + stream_error:tag("text", stream_xmlns_attr):text(reason.text):up(); end if reason.extra then - stanza:add_child(reason.extra); + stream_error:add_child(reason.extra); end - log("debug", "Disconnecting client, <stream:error> is: %s", tostring(stanza)); - session.send(stanza); elseif reason.name then -- a stanza - log("debug", "Disconnecting client, <stream:error> is: %s", tostring(reason)); - session.send(reason); + stream_error = reason; end end + stream_error = tostring(stream_error); + log("debug", "Disconnecting client, <stream:error> is: %s", stream_error); + session.send(stream_error); end session.send("</stream:stream>"); |