clash/transport/vmess/tls.go

32 lines
641 B
Go
Raw Normal View History

2020-04-03 08:04:24 +00:00
package vmess
import (
"context"
2020-04-03 08:04:24 +00:00
"crypto/tls"
"net"
C "github.com/Dreamacro/clash/constant"
2020-04-03 08:04:24 +00:00
)
type TLSConfig struct {
Host string
SkipCertVerify bool
NextProtos []string
2020-04-03 08:04:24 +00:00
}
func StreamTLSConn(conn net.Conn, cfg *TLSConfig) (net.Conn, error) {
tlsConfig := &tls.Config{
ServerName: cfg.Host,
InsecureSkipVerify: cfg.SkipCertVerify,
NextProtos: cfg.NextProtos,
2020-04-03 08:04:24 +00:00
}
tlsConn := tls.Client(conn, tlsConfig)
// fix tls handshake not timeout
ctx, cancel := context.WithTimeout(context.Background(), C.DefaultTLSTimeout)
defer cancel()
err := tlsConn.HandshakeContext(ctx)
2020-04-03 08:04:24 +00:00
return tlsConn, err
}