You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
// Copyright 2016 The Go Authors. All rights reserved. |
|
// Use of this source code is governed by a BSD-style |
|
// license that can be found in the LICENSE file. |
|
|
|
// +build go1.7,!go1.8 |
|
|
|
package http2 |
|
|
|
import "crypto/tls" |
|
|
|
// temporary copy of Go 1.7's private tls.Config.clone: |
|
func cloneTLSConfig(c *tls.Config) *tls.Config { |
|
return &tls.Config{ |
|
Rand: c.Rand, |
|
Time: c.Time, |
|
Certificates: c.Certificates, |
|
NameToCertificate: c.NameToCertificate, |
|
GetCertificate: c.GetCertificate, |
|
RootCAs: c.RootCAs, |
|
NextProtos: c.NextProtos, |
|
ServerName: c.ServerName, |
|
ClientAuth: c.ClientAuth, |
|
ClientCAs: c.ClientCAs, |
|
InsecureSkipVerify: c.InsecureSkipVerify, |
|
CipherSuites: c.CipherSuites, |
|
PreferServerCipherSuites: c.PreferServerCipherSuites, |
|
SessionTicketsDisabled: c.SessionTicketsDisabled, |
|
SessionTicketKey: c.SessionTicketKey, |
|
ClientSessionCache: c.ClientSessionCache, |
|
MinVersion: c.MinVersion, |
|
MaxVersion: c.MaxVersion, |
|
CurvePreferences: c.CurvePreferences, |
|
DynamicRecordSizingDisabled: c.DynamicRecordSizingDisabled, |
|
Renegotiation: c.Renegotiation, |
|
} |
|
}
|
|
|