Drop dependency on github.com/mreiferson/go-httpclient
This commit is contained in:
parent
c0e79476ae
commit
2335a57569
|
@ -17,7 +17,6 @@ import (
|
||||||
"net/url"
|
"net/url"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/mreiferson/go-httpclient"
|
|
||||||
"software.sslmate.com/src/certspotter/ct"
|
"software.sslmate.com/src/certspotter/ct"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -89,13 +88,15 @@ type addChainResponse struct {
|
||||||
func New(uri string) *LogClient {
|
func New(uri string) *LogClient {
|
||||||
var c LogClient
|
var c LogClient
|
||||||
c.uri = uri
|
c.uri = uri
|
||||||
transport := &httpclient.Transport{
|
transport := &http.Transport{
|
||||||
Proxy: http.ProxyFromEnvironment,
|
Proxy: http.ProxyFromEnvironment,
|
||||||
ConnectTimeout: 10 * time.Second,
|
TLSHandshakeTimeout: 15 * time.Second,
|
||||||
RequestTimeout: 60 * time.Second,
|
|
||||||
ResponseHeaderTimeout: 30 * time.Second,
|
ResponseHeaderTimeout: 30 * time.Second,
|
||||||
MaxIdleConnsPerHost: 10,
|
MaxIdleConnsPerHost: 10,
|
||||||
DisableKeepAlives: false,
|
DisableKeepAlives: false,
|
||||||
|
MaxIdleConns: 100,
|
||||||
|
IdleConnTimeout: 15 * time.Second,
|
||||||
|
ExpectContinueTimeout: 1 * time.Second,
|
||||||
TLSClientConfig: &tls.Config{
|
TLSClientConfig: &tls.Config{
|
||||||
// We have to disable TLS certificate validation because because several logs
|
// We have to disable TLS certificate validation because because several logs
|
||||||
// (WoSign, StartCom, GDCA) use certificates that are not widely trusted.
|
// (WoSign, StartCom, GDCA) use certificates that are not widely trusted.
|
||||||
|
@ -107,7 +108,7 @@ func New(uri string) *LogClient {
|
||||||
InsecureSkipVerify: true,
|
InsecureSkipVerify: true,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
c.httpClient = &http.Client{Transport: transport}
|
c.httpClient = &http.Client{Timeout: 60 * time.Second, Transport: transport}
|
||||||
return &c
|
return &c
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue