Wrapped a core_process_stanza call in an xpcall call
authorWaqas Hussain <waqas20@gmail.com>
Wed, 26 Nov 2008 04:47:16 +0000 (09:47 +0500)
committerWaqas Hussain <waqas20@gmail.com>
Wed, 26 Nov 2008 04:47:16 +0000 (09:47 +0500)
net/xmppserver_listener.lua

index 51116a5ee048fdbf1251e6027674c48a379e584d..5ca25a27a78095e966e23875d007117aa9ef957d 100644 (file)
@@ -130,7 +130,7 @@ function xmppserver.register_outgoing(conn, session)
        -- FIXME: 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
+       session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr));  end
 end
 
 connlisteners_register("xmppserver", xmppserver);