update crypto vendors (#10398)

Co-authored-by: @techknowlogick
This commit is contained in:
guillep2k
2020-02-21 11:27:19 -03:00
committed by GitHub
parent 3cee15e6f9
commit 919f3f11e2
129 changed files with 3568 additions and 1374 deletions

View File

@@ -72,7 +72,6 @@ func NewListener(domains ...string) net.Listener {
// the Manager m's Prompt, Cache, HostPolicy, and other desired options.
func (m *Manager) Listener() net.Listener {
ln := &listener{
m: m,
conf: m.TLSConfig(),
}
ln.tcpListener, ln.tcpListenErr = net.Listen("tcp", ":443")
@@ -80,7 +79,6 @@ func (m *Manager) Listener() net.Listener {
}
type listener struct {
m *Manager
conf *tls.Config
tcpListener net.Listener