mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-08 03:55:11 +08:00
10 lines
119 B
Go
10 lines
119 B
Go
// +build go1.8
|
|
|
|
package ws
|
|
|
|
import "crypto/tls"
|
|
|
|
func tlsCloneConfig(c *tls.Config) *tls.Config {
|
|
return c.Clone()
|
|
}
|