diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2020-01-21 15:34:47 -0300 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2020-01-21 19:34:47 +0100 |
commit | 2fad7f134fa8cf871cdf6ccdcedc6df0d62c2f64 (patch) | |
tree | 78c0b2ed1d8889e1cea4662909422317ce5ed7ca /lib | |
parent | bdb7c82c6aaf60392285cfea43c65c5b9b919e27 (diff) | |
download | Nim-2fad7f134fa8cf871cdf6ccdcedc6df0d62c2f64.tar.gz |
httpclient, maxredirects to Natural, newHttpClient/newAsyncHttpClient add headers argument instead of hardcoded empty (#13207)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/httpclient.nim | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/pure/httpclient.nim b/lib/pure/httpclient.nim index d9a6192a7..7c062c2e1 100644 --- a/lib/pure/httpclient.nim +++ b/lib/pure/httpclient.nim @@ -486,7 +486,7 @@ type connected: bool currentURL: Uri ## Where we are currently connected. headers*: HttpHeaders ## Headers to send in requests. - maxRedirects: int + maxRedirects: Natural ## Maximum redirects, set to ``0`` to disable. userAgent: string timeout*: int ## Only used for blocking HttpClient for now. proxy: Proxy @@ -513,7 +513,7 @@ type proc newHttpClient*(userAgent = defUserAgent, maxRedirects = 5, sslContext = getDefaultSSL(), proxy: Proxy = nil, - timeout = -1): HttpClient = + timeout = -1, headers = newHttpHeaders()): HttpClient = ## Creates a new HttpClient instance. ## ## ``userAgent`` specifies the user agent that will be used when making @@ -529,8 +529,10 @@ proc newHttpClient*(userAgent = defUserAgent, ## ## ``timeout`` specifies the number of milliseconds to allow before a ## ``TimeoutError`` is raised. + ## + ## ``headers`` specifies the HTTP Headers. new result - result.headers = newHttpHeaders() + result.headers = headers result.userAgent = userAgent result.maxRedirects = maxRedirects result.proxy = proxy @@ -546,7 +548,7 @@ type proc newAsyncHttpClient*(userAgent = defUserAgent, maxRedirects = 5, sslContext = getDefaultSSL(), - proxy: Proxy = nil): AsyncHttpClient = + proxy: Proxy = nil, headers = newHttpHeaders()): AsyncHttpClient = ## Creates a new AsyncHttpClient instance. ## ## ``userAgent`` specifies the user agent that will be used when making @@ -559,8 +561,10 @@ proc newAsyncHttpClient*(userAgent = defUserAgent, ## ## ``proxy`` specifies an HTTP proxy to use for this HTTP client's ## connections. + ## + ## ``headers`` specifies the HTTP Headers. new result - result.headers = newHttpHeaders() + result.headers = headers result.userAgent = userAgent result.maxRedirects = maxRedirects result.proxy = proxy |