1
0
mirror of https://github.com/brunoos/luasec.git synced 2025-04-09 10:16:56 +02:00

Fix for sni host issue and . Thanks to @TomasB

This commit is contained in:
Greatwolf 2016-12-15 16:46:59 -08:00
parent 4889830d53
commit 77b88e0b0d

@ -89,6 +89,7 @@ local function tcp(params)
function conn:connect(host, port)
try(self.sock:connect(host, port))
self.sock = try(ssl.wrap(self.sock, params))
self.sock:sni(host)
try(self.sock:dohandshake())
reg(self, getmetatable(self.sock))
return 1