Skip to content

Releases: yhirose/cpp-httplib

Better support for Keep-alive on the client side

16 Jun 21:55
Compare
Choose a tag to compare

New Keep-Alive support on Client which supersedes the old batch style Keep-Alive API.

Fix for server hang when multipart data was malformed

16 Jun 16:25
Compare
Choose a tag to compare

Fixed build error on Windows with CPPHTTPLIB_USE_POLL

28 May 16:55
Compare
Choose a tag to compare

Fixed `stop()` method problem on Windows

23 May 17:57
Compare
Choose a tag to compare
v0.6.5

Fixed problem with `stop` on windows

Made the idle event feature optional

23 May 12:51
Compare
Choose a tag to compare
v0.6.4

Changed CPPHTTPLIB_IDLE_INTERVAL_USECOND to 0

Made write timeout configurable and fixed redirect problem with digest auth on proxy

18 May 17:41
Compare
Choose a tag to compare

Experimental simple client Interface

16 May 13:03
Compare
Choose a tag to compare

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)

14 May 22:09
Compare
Choose a tag to compare
v0.6.1

Updated version in the User Agent string

New ContentProvider interface

14 May 02:58
Compare
Choose a tag to compare

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

11 May 00:49
Compare
Choose a tag to compare
v0.5.13

Fixed potential infinite loop with content receiver