# HG changeset patch # User Matthew Wild # Date 1224871491 -3600 # Node ID d4ee015fcee4ed284b42fbf043b7d612e85f9b53 # Parent 4adc53e03b4db7fe8b6873120b3c627e6a169200 Backed out changeset 4adc53e03b4d (garbage collection) diff -r 4adc53e03b4d -r d4ee015fcee4 core/xmlhandlers.lua --- a/core/xmlhandlers.lua Fri Oct 24 18:43:26 2008 +0100 +++ b/core/xmlhandlers.lua Fri Oct 24 19:04:51 2008 +0100 @@ -69,7 +69,7 @@ streamopened(session, attr); return; end - error("Client failed to open stream successfully, it sent tag "..name); + error("Client failed to open stream successfully"); end if curr_ns == "jabber:client" and name ~= "iq" and name ~= "presence" and name ~= "message" then error("Client sent invalid top-level stanza"); diff -r 4adc53e03b4d -r d4ee015fcee4 net/xmppclient_listener.lua --- a/net/xmppclient_listener.lua Fri Oct 24 18:43:26 2008 +0100 +++ b/net/xmppclient_listener.lua Fri Oct 24 19:04:51 2008 +0100 @@ -60,7 +60,7 @@ -- TODO: Below function should be session,stanza - and xmlhandlers should use :method() notation to call, -- this will avoid the useless indirection we have atm -- (I'm on a mission, no time to fix now) - session.stanza_dispatch = function (stanza) collectgarbage("collect"); collectgarbage("collect"); return core_process_stanza(session, stanza); end + session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end end if data then