pkg/transport: update tls.Config copy method

For Go 1.7
This commit is contained in:
Gyu-Ho Lee 2016-09-18 22:50:45 +09:00
parent 33dbf5c6bd
commit 8c9a88c7d4

View File

@ -252,23 +252,25 @@ func (info TLSInfo) ClientConfig() (*tls.Config, error) {
// Keep up-to-date with 'go/src/crypto/tls/common.go' // Keep up-to-date with 'go/src/crypto/tls/common.go'
func ShallowCopyTLSConfig(cfg *tls.Config) *tls.Config { func ShallowCopyTLSConfig(cfg *tls.Config) *tls.Config {
ncfg := tls.Config{ ncfg := tls.Config{
Time: cfg.Time, Time: cfg.Time,
Certificates: cfg.Certificates, Certificates: cfg.Certificates,
NameToCertificate: cfg.NameToCertificate, NameToCertificate: cfg.NameToCertificate,
GetCertificate: cfg.GetCertificate, GetCertificate: cfg.GetCertificate,
RootCAs: cfg.RootCAs, RootCAs: cfg.RootCAs,
NextProtos: cfg.NextProtos, NextProtos: cfg.NextProtos,
ServerName: cfg.ServerName, ServerName: cfg.ServerName,
ClientAuth: cfg.ClientAuth, ClientAuth: cfg.ClientAuth,
ClientCAs: cfg.ClientCAs, ClientCAs: cfg.ClientCAs,
InsecureSkipVerify: cfg.InsecureSkipVerify, InsecureSkipVerify: cfg.InsecureSkipVerify,
CipherSuites: cfg.CipherSuites, CipherSuites: cfg.CipherSuites,
PreferServerCipherSuites: cfg.PreferServerCipherSuites, PreferServerCipherSuites: cfg.PreferServerCipherSuites,
SessionTicketKey: cfg.SessionTicketKey, SessionTicketKey: cfg.SessionTicketKey,
ClientSessionCache: cfg.ClientSessionCache, ClientSessionCache: cfg.ClientSessionCache,
MinVersion: cfg.MinVersion, MinVersion: cfg.MinVersion,
MaxVersion: cfg.MaxVersion, MaxVersion: cfg.MaxVersion,
CurvePreferences: cfg.CurvePreferences, DynamicRecordSizingDisabled: cfg.DynamicRecordSizingDisabled,
Renegotiation: cfg.Renegotiation,
CurvePreferences: cfg.CurvePreferences,
} }
return &ncfg return &ncfg
} }