Files
goodlink/tls2/client.go
2312708932@qq.com dbba58be58 完善架构
2024-12-14 11:12:28 +08:00

13 lines
178 B
Go

package tls2
import (
"crypto/tls"
)
func GetClientTLSConfig() *tls.Config {
return &tls.Config{
InsecureSkipVerify: true,
NextProtos: []string{"goodlink"},
}
}