Skip to content

Tags: pointrlabs/cpp-httplib

Tags

v0.7.18

Toggle v0.7.18's commit message
Fixed problem with invalid requests including spaces in URL path

v0.7.17

Toggle v0.7.17's commit message
Removed `std::atomic<Error> error_`

v0.7.16

Toggle v0.7.16's commit message
Fixed build errors and apply clangformat

v0.7.15

Toggle v0.7.15's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
std::tolower is undefined if the argument's value is neither represen…

…table as unsigned char nor equal to EOF (yhirose#761)

Co-authored-by: taoxu <taoxu@bilibili.com>

v0.7.14

Toggle v0.7.14's commit message

v0.7.13

Toggle v0.7.13's commit message
Fix problem with invalid range

v0.7.12

Toggle v0.7.12's commit message

v0.7.11

Toggle v0.7.11's commit message
Fixed compiler error for old compiler.

v0.7.10

Toggle v0.7.10's commit message

v0.7.9

Toggle v0.7.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add `cache_control` parameter to `set_mount_point` (yhirose#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