Merge pull request #89 from greatwolf/sni_host

Fix for sni host issue #88 and #44. Thanks to @TomasB
This commit is contained in:
Bruno Silvestre 2016-12-22 16:21:40 -02:00 committed by GitHub
commit 98f8872743

View File

@ -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