mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-25 12:16:35 +00:00
11 lines
136 B
Go
11 lines
136 B
Go
//go:build go1.8
|
|
// +build go1.8
|
|
|
|
package ws
|
|
|
|
import "crypto/tls"
|
|
|
|
func tlsCloneConfig(c *tls.Config) *tls.Config {
|
|
return c.Clone()
|
|
}
|