summary refs log tree commit diff stats
path: root/tests/stdlib/thttpclient.nim
Commit message (Collapse)AuthorAgeFilesLines
* Implement streamed async/sync downloadFile and deprecate old one.Dominik Picheta2017-02-111-2/+4
|
* Implement streamed body reading in httpclient.Dominik Picheta2017-02-111-1/+3
|
* Use onThreadCreation to set default SSL context for each thread (#5265)Ruslan Mustakov2017-01-231-1/+1
| | | Fixes: #4998
* Implements onProgressChanged callback for httpclient.Dominik Picheta2016-09-241-3/+22
|
* Implements getContent and postContent for (Async)HttpClient.Dominik Picheta2016-09-241-0/+19
|
* Handle redirects in HttpClient's post procs & post test.Dominik Picheta2016-09-241-18/+17
|
* Fixes #4797.Dominik Picheta2016-09-191-0/+4
|
* Implements proxy support for (Async)HttpClient. Ref #4423.Dominik Picheta2016-09-181-0/+6
| | | | Fixes #2160.
* Implements timeouts for synchronous HttpClient.Dominik Picheta2016-09-181-0/+13
|
* Improvements to httpclient. Refs #4423.Dominik Picheta2016-09-181-0/+53
* Adds ability to query HttpCode and compare it with strings. * Moves HttpMethod to HttpCore module. * Implements synchronous HttpClient using {.multisync.}.