mod_component: Handle component connecting to non-existent host

This commit is contained in:
Matthew Wild 2012-04-22 16:35:26 +01:00
parent 51ab962e55
commit c1e2674fd4

View file

@ -149,7 +149,7 @@ function stream_callbacks.error(session, error, data, data2)
end
function stream_callbacks.streamopened(session, attr)
if not hosts[attr.to].modules.component then
if not hosts[attr.to] or not hosts[attr.to].modules.component then
session:close{ condition = "host-unknown", text = tostring(attr.to).." does not match any configured external components" };
return;
end