Committing code to get nicer tracebacks for errors, also we no longer consider such...
[prosody.git] / net / xmppclient_listener.lua
index e722e55b1a8d31dafd8fca96891e027eed34c49d..64747bc5b960e47fb58cc3607a2ea0b924a8e698 100644 (file)
@@ -22,7 +22,7 @@ local xmppclient = { default_port = 5222 };
 
 local function session_reset_stream(session)
        -- Reset stream
-               local parser = lxp.new(init_xmlhandlers(session, sm_streamopened), ":");
+               local parser = lxp.new(init_xmlhandlers(session, sm_streamopened), "|");
                session.parser = parser;
                
                session.notopen = true;
@@ -60,7 +60,12 @@ function xmppclient.listener(conn, data)
                -- 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) return core_process_stanza(session, stanza); end
+
+               -- Debug version --
+               local function handleerr() print("Traceback:", debug.traceback()); end
+               session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr));  end
+
+--             session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
 
        end
        if data then