Skip to content

Releases: yhirose/cpp-httplib

Fix for SSL_connect problem and range problems

05 Nov 05:26
Compare
Choose a tag to compare
v0.7.13

Fix problem with invalid range

Fix digest auth proxy connection

02 Nov 02:20
Compare
Choose a tag to compare

Fixed SSL read timeout problem

27 Oct 19:01
Compare
Choose a tag to compare
v0.7.11

Fixed compiler error for old compiler.

Temporary fix for memory leak on SSL

20 Oct 00:07
Compare
Choose a tag to compare

Please see #706 to find more information.

set_mount_point accepts HTTP headers

11 Oct 01:18
6d60dc8
Compare
Choose a tag to compare
Add `cache_control` parameter to `set_mount_point` (#688)

* Add `cache_control` parameter to `set_mount_point`

Specifies the Cache-Control header value to return when specified. For example:

```
svr.set_mount_point("/assets", "public/assets", "public, max-age=604800, immutable");
```

* Add default for cache_control

Default to "no-cache", which is implicitly what is happening today.

* Change set_mount_point to accept Headers

* Don't use C++17 destructuring

Fix for '100 Continue' problem on client

26 Sep 09:03
Compare
Choose a tag to compare

Added CPPHTTPLIB_COMPRESSION_BUFSIZ

08 Sep 16:19
3da4a0a
Compare
Choose a tag to compare
Add compression buffer size customization (#644)

* add compression buffer size customization and small brotli refactor

* allocat brotli buffer once

* add init to brotli decoder buffer

Fixed various bugs

03 Sep 17:24
852a374
Compare
Choose a tag to compare
v0.7.6

Fix server crash caused due to regex complexity while matching header…

Content provider without content length

17 Aug 02:31
Compare
Choose a tag to compare

Brotli support on server

08 Aug 12:19
Compare
Choose a tag to compare
v0.7.4

Fixed example build errors