diff --git a/api.go b/api.go index f23f12a..b90a65e 100644 --- a/api.go +++ b/api.go @@ -6,7 +6,7 @@ import ( ) // global exported consts -const SemVer = "v0.1.49" +const SemVer = "v0.1.50" // global var var ( diff --git a/transport.go b/transport.go index e4a9d84..dd07ea8 100644 --- a/transport.go +++ b/transport.go @@ -188,7 +188,7 @@ func fetchXML(server string, config *OPNCall) (data []byte, err error) { client := getClient(transport) // connect - client.Timeout = time.Duration(4 * time.Second) + client.Timeout = time.Duration(20 * time.Second) body, err := client.Do(req) if err != nil { displayChan <- []byte("[FETCH][FAIL:TLS-CONNECT] " + targetURL)