mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Backed out changeset 4adc53e03b4d (garbage collection)
This commit is contained in:
parent
20f24311a4
commit
ffd784e833
2 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ function init_xmlhandlers(session, streamopened)
|
||||||
streamopened(session, attr);
|
streamopened(session, attr);
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
error("Client failed to open stream successfully, it sent tag "..name);
|
error("Client failed to open stream successfully");
|
||||||
end
|
end
|
||||||
if curr_ns == "jabber:client" and name ~= "iq" and name ~= "presence" and name ~= "message" then
|
if curr_ns == "jabber:client" and name ~= "iq" and name ~= "presence" and name ~= "message" then
|
||||||
error("Client sent invalid top-level stanza");
|
error("Client sent invalid top-level stanza");
|
||||||
|
|
|
@ -60,7 +60,7 @@ function xmppclient.listener(conn, data)
|
||||||
-- TODO: Below function should be session,stanza - and xmlhandlers should use :method() notation to call,
|
-- TODO: Below function should be session,stanza - and xmlhandlers should use :method() notation to call,
|
||||||
-- this will avoid the useless indirection we have atm
|
-- this will avoid the useless indirection we have atm
|
||||||
-- (I'm on a mission, no time to fix now)
|
-- (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
|
end
|
||||||
if data then
|
if data then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue