Releases: yhirose/cpp-httplib
Releases · yhirose/cpp-httplib
Better support for Keep-alive on the client side
New Keep-Alive support on Client which supersedes the old batch style Keep-Alive API.
Fix for server hang when multipart data was malformed
v0.6.7 Fix #522
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