Releases: yhirose/cpp-httplib
Releases · yhirose/cpp-httplib
Fixed build error on Windows with CPPHTTPLIB_USE_POLL
v0.6.6 Fixed build error...
Fixed `stop()` method problem on Windows
v0.6.5 Fixed problem with `stop` on windows
Made the idle event feature optional
v0.6.4 Changed CPPHTTPLIB_IDLE_INTERVAL_USECOND to 0
Made write timeout configurable and fixed redirect problem with digest auth on proxy
v0.6.3 Code cleanup and format
Experimental simple client Interface
Example:
auto res =
httplib::Client2("https://httpbin.org")
.set_follow_location(true)
.Get("/redirect-to?url=http%3A%2F%2Fwww.google.com&status_code=302");
Updated version number in the User Agent string (0.6)
v0.6.1 Updated version in the User Agent string
New ContentProvider interface
ContentProvider
now requires 'boolean return value'. It's a breaking change, but a user can now cancel a streaming process by returning false
in content provider. This behavior is same as ContentReceiver
.
Fixed a number of bugs
v0.5.13 Fixed potential infinite loop with content receiver
Changed CPPHTTPLIB_THREAD_POOL_COUNT back to 8
v0.5.12 Appled HANDLE_EINTR to `send` and `select` system calls
Support remote_addr and remote_port REMOTE_PORT header in client Request (#433)
v0.5.11 Code format