Results 1 issues of 1992w

我有自定义ClientHelloSpec的需求,用SetTLSHandshake能解决,但能否新增一个设置ClientHelloSpec的方法,类似于下面这样: utls.HelloCustom 支持自定义ClientHelloSpec ```golang func (c *Client) SetTLSClientHelloSpec(spec *utls.ClientHelloSpec) *Client { fn := func(ctx context.Context, addr string, plainConn net.Conn) (conn net.Conn, tlsState *tls.ConnectionState, err error) { colonPos := strings.LastIndex(addr, ":")...