aboutsummaryrefslogtreecommitdiffstats
path: root/net/server_select.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-03-11 13:00:51 +0100
committerKim Alvefur <zash@zash.se>2019-03-11 13:00:51 +0100
commit5d2608e150b7a739c0b1658fd2e9031af9ad2991 (patch)
treedd2e536584dca2521bced9dcca3634edb996862d /net/server_select.lua
parent9f65ce71893ef10485442ee209472a38865da081 (diff)
downloadprosody-5d2608e150b7a739c0b1658fd2e9031af9ad2991.tar.gz
prosody-5d2608e150b7a739c0b1658fd2e9031af9ad2991.zip
net.server: Only add alternate SNI contexts if at least one is provided
Fixes use of <starttls/> when a client sends SNI, which would send no certificate otherwise.
Diffstat (limited to 'net/server_select.lua')
-rw-r--r--net/server_select.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server_select.lua b/net/server_select.lua
index b52cc6d7..4b156409 100644
--- a/net/server_select.lua
+++ b/net/server_select.lua
@@ -637,7 +637,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
if socket.sni then
if self.servername then
socket:sni(self.servername);
- elseif self.server() and self.server().hosts then
+ elseif self._server and type(self._server.hosts) == "table" and next(self._server.hosts) ~= nil then
socket:sni(self.server().hosts, true);
end
end