Changeset

341:a9e02b5c58d2

Don't error if streamopened/streamclosed callback is not specified for a session
author Matthew Wild <mwild1@gmail.com>
date Wed, 19 Nov 2008 05:10:16 +0000
parents 340:a31715bf08eb
children 342:52f75260a22d
files core/xmlhandlers.lua
diffstat 1 files changed, 9 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/core/xmlhandlers.lua	Wed Nov 19 05:09:05 2008 +0000
+++ b/core/xmlhandlers.lua	Wed Nov 19 05:10:16 2008 +0000
@@ -69,8 +69,10 @@
 			if not stanza then --if we are not currently inside a stanza
 				if session.notopen then
 					print("client opening with "..tostring(name));
-					if name == "stream" and cb_streamopened then
-						cb_streamopened(session, attr);
+					if name == "stream" then
+						if cb_streamopened then
+							cb_streamopened(session, attr);
+						end
 						return;
 					end
 					error("Client failed to open stream successfully");
@@ -97,14 +99,16 @@
 		function xml_handlers:EndElement(name)
 			curr_ns,name = name:match("^(.+)|([%w%-]+)$");
 			if (not stanza) or (#stanza.last_add > 0 and name ~= stanza.last_add[#stanza.last_add].name) then 
-				if name == "stream" and cb_streamclosed then
+				if name == "stream" then
 					log("debug", "Stream closed");
-					cb_streamclosed(session);
+					if cb_streamclosed then
+						cb_streamclosed(session);
+					end
 					return;
 				elseif name == "error" then
 					error("Stream error: "..tostring(name)..": "..tostring(stanza));
 				else
-					error("XML parse error in client stream");
+					error("XML parse error in client stream with element: "..name);
 				end
 			end
 			if stanza and #chardata > 0 then