Shortened log output for incoming stanzas and an added check.

Fri, 07 Nov 2008 02:38:44 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Fri, 07 Nov 2008 02:38:44 +0500
changeset 221
641dbdf3b751
parent 219
f06e97f525bc
child 222
6153462397d8

Shortened log output for incoming stanzas and an added check.

core/stanza_router.lua file | annotate | diff | comparison | revisions
--- a/core/stanza_router.lua	Thu Nov 06 16:57:10 2008 +0500
+++ b/core/stanza_router.lua	Fri Nov 07 02:38:44 2008 +0500
@@ -31,7 +31,7 @@
 local print = print;
 
 function core_process_stanza(origin, stanza)
-	log("debug", "Received["..origin.type.."]: "..tostring(stanza))
+	log("debug", "Received["..origin.type.."]: "..tostring(st.reply(st.reply(stanza))))
 
 	-- TODO verify validity of stanza (as well as JID validity)
 	if stanza.name == "iq" and not(#stanza.tags == 1 and stanza.tags[1].attr.xmlns) then
@@ -81,7 +81,7 @@
 		component_handle_stanza(origin, stanza);
 	elseif hosts[to] and hosts[to].type == "component" then -- hack to allow components to handle node@server/resource and server/resource
 		component_handle_stanza(origin, stanza);
-	elseif hosts[host].type == "component" then -- directed at a component
+	elseif hosts[host] and hosts[host].type == "component" then -- directed at a component
 		component_handle_stanza(origin, stanza);
 	elseif origin.type == "c2s" and stanza.name == "presence" and stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" then
 		handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare);

mercurial