mod_s2s: Check that an SRV reply isn't empty.

This commit is contained in:
Kim Alvefur 2012-09-03 04:22:40 +02:00
parent 151f74b143
commit ddd751aed9

View file

@ -94,7 +94,7 @@ function s2sout.attempt_connection(host_session, err)
handle = adns.lookup(function (answer)
handle = nil;
host_session.connecting = nil;
if answer then
if answer and #answer > 0 then
log("debug", "%s has SRV records, handling...", to_host);
local srv_hosts = {};
host_session.srv_hosts = srv_hosts;