update crypto vendors (#10385)

This commit is contained in:
techknowlogick 2020-02-20 16:03:34 -05:00 committed by GitHub
parent 3c45cf8494
commit 63a6e71ac2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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