mirror of
https://gitee.com/konyshe/goodlink.git
synced 2025-09-26 20:51:22 +08:00
13 lines
178 B
Go
13 lines
178 B
Go
package tls2
|
|
|
|
import (
|
|
"crypto/tls"
|
|
)
|
|
|
|
func GetClientTLSConfig() *tls.Config {
|
|
return &tls.Config{
|
|
InsecureSkipVerify: true,
|
|
NextProtos: []string{"goodlink"},
|
|
}
|
|
}
|