Add custom tls client support for v2ray h2/grpclite transports

This commit is contained in:
世界 2022-09-11 10:22:52 +08:00
parent 7e09beb0c3
commit a2d1f89922
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
14 changed files with 211 additions and 129 deletions

View file

@ -30,7 +30,7 @@ func NewClient(router adapter.Router, serverAddress string, options option.Outbo
}
}
func ClientHandshake(ctx context.Context, conn net.Conn, config Config) (net.Conn, error) {
func ClientHandshake(ctx context.Context, conn net.Conn, config Config) (Conn, error) {
tlsConn := config.Client(conn)
ctx, cancel := context.WithTimeout(ctx, C.TCPTimeout)
defer cancel()