Skip to content

Commit

Permalink
overwrite default values, see #127
Browse files Browse the repository at this point in the history
  • Loading branch information
firefart committed Apr 17, 2019
1 parent 2c039ef commit 4e599f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libgobuster/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ func NewHTTPClient(c context.Context, opt *HTTPOptions) (*HTTPClient, error) {
Timeout: opt.Timeout,
CheckRedirect: redirectFunc,
Transport: &http.Transport{
Proxy: proxyURLFunc,
Proxy: proxyURLFunc,
MaxIdleConns: 100,
MaxIdleConnsPerHost: 100,
TLSClientConfig: &tls.Config{
InsecureSkipVerify: opt.InsecureSSL,
},
Expand Down

0 comments on commit 4e599f3

Please sign in to comment.