diff --git a/internal/ihttp/client.go b/internal/ihttp/client.go index 5127c0d..dd65c12 100644 --- a/internal/ihttp/client.go +++ b/internal/ihttp/client.go @@ -62,10 +62,8 @@ func NewClient(config *ClientConfig) *Client { client = &Client{ standardClient: &http.Client{ Transport: &http.Transport{ - //Proxy: Proxy, - //TLSHandshakeTimeout : delay * time.Second, TLSClientConfig: &tls.Config{ - Renegotiation: tls.RenegotiateOnceAsClient, + Renegotiation: tls.RenegotiateNever, InsecureSkipVerify: true, }, TLSHandshakeTimeout: config.Timeout,