clash/transport/vless/xtls.go

32 lines
665 B
Go
Raw Normal View History

2021-07-06 15:55:34 +00:00
package vless
import (
2022-01-18 02:05:06 +00:00
"context"
2021-07-06 15:55:34 +00:00
"net"
2022-01-18 02:05:06 +00:00
C "github.com/Dreamacro/clash/constant"
2021-07-06 15:55:34 +00:00
xtls "github.com/xtls/go"
)
type XTLSConfig struct {
Host string
SkipCertVerify bool
NextProtos []string
}
func StreamXTLSConn(conn net.Conn, cfg *XTLSConfig) (net.Conn, error) {
xtlsConfig := &xtls.Config{
ServerName: cfg.Host,
InsecureSkipVerify: cfg.SkipCertVerify,
NextProtos: cfg.NextProtos,
}
xtlsConn := xtls.Client(conn, xtlsConfig)
2022-01-18 02:05:06 +00:00
2022-02-22 17:00:27 +00:00
// fix xtls handshake not timeout
2022-01-18 02:05:06 +00:00
ctx, cancel := context.WithTimeout(context.Background(), C.DefaultTLSTimeout)
defer cancel()
err := xtlsConn.HandshakeContext(ctx)
2021-07-06 15:55:34 +00:00
return xtlsConn, err
}