yhirose
b045ee7f6b
Fix #2424
2026-04-12 17:31:32 -04:00
Andrea Pappacoda
cb3fce964d
fix: cast len to 64 bits before right shift in ws ( #2426 )
...
Fixes WebSocketIntegrationTest.LargeMessage and
WebSocketIntegrationTest.MaxPayloadAtLimit on i386
2026-04-12 17:27:16 -04:00
yhirose
7e2a173072
Fix #2425
2026-04-12 17:25:41 -04:00
yhirose
ee5d15c842
Let dynamic threads wait for work instead of exiting immediately
...
Previously, dynamic threads exited as soon as their current task
completed and the queue was empty. This caused excessive thread
creation/destruction under bursty or long-lived workloads (e.g., SSE
streaming), degrading tail latency. Now dynamic threads loop back and
wait for CPPHTTPLIB_THREAD_POOL_IDLE_TIMEOUT (3s) before exiting,
allowing them to be reused for subsequent tasks.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-12 11:50:38 -04:00
yhirose
09d00c099c
Update README
2026-04-11 22:24:04 -04:00
yhirose
6bdd657713
Enhance WebSocket support with unresponsive-peer detection and documentation updates
...
- Added `set_websocket_max_missed_pongs` method to configure unresponsive-peer detection.
- Updated README and documentation to clarify WebSocket limitations and features.
- Introduced tests for detecting non-responsive peers and ensuring responsive peers do not trigger timeouts.
2026-04-11 22:17:38 -04:00
yhirose
b4eec3ee77
Removed deprecated APIs ( #2423 )
2026-04-11 20:54:06 -04:00
yhirose
c0248ff7fc
Add links to other topics in Cookbook documents
2026-04-11 20:40:08 -04:00
yhirose
203e1bf2ac
Code cleanup
2026-04-11 20:40:08 -04:00
yhirose
ff04679538
Release v0.42.0
latest
v0.42.0
2026-04-11 18:53:36 -04:00
yhirose
d97749a315
Update README
2026-04-11 17:15:37 -04:00
yhirose
994d76ab39
Fix #2422
2026-04-11 15:38:35 -04:00
yhirose
529dafdee3
Add Cookbook other topics (draft)
2026-04-10 19:02:44 -04:00
yhirose
361b753f19
Add Cookbook S01-S22 (draft)
2026-04-10 18:47:42 -04:00
yhirose
61e533ddc5
Add Cookbook C01-C19 (draft)
2026-04-10 18:16:02 -04:00
yhirose
783de4ec4e
Update README
2026-04-08 18:35:56 -04:00
yhirose
7a7f9b30e7
Update README
2026-04-08 18:22:25 -04:00
yhirose
834a444435
Fixed warnings
2026-04-08 18:10:34 -04:00
yhirose
4f589c1ffb
Fix #2421
2026-04-08 18:09:22 -04:00
Jiri Slaby
fc885cc62d
test: WebSocketIntegrationTest.SocketSettings: do not set AF_INET ( #2420 )
...
The server listens on AF_INET6 only (::1), so the test fails:
[ RUN ] WebSocketIntegrationTest.SocketSettings
test/test.cc:17160: Failure
Value of: client.connect()
Actual: false
Expected: true
Fixes #2419 .
Co-authored-by: Jiri Slaby <jslaby@suse.cz >
2026-04-08 07:48:13 -04:00
yhirose
ca82c93772
Refactor SSLVerifierResponse to enum class and add get_param_values method to Request
2026-04-04 00:02:26 -04:00
yhirose
073b587962
Release v0.41.0
v0.41.0
2026-04-03 21:50:24 -04:00
yhirose
96785eea21
Add parse_url
2026-04-03 20:54:17 -04:00
yhirose
3093bdd9ab
Fix #2416
2026-04-03 18:27:12 -04:00
crueter
6607a6a592
[cmake] Allow using pre-existing zstd target if it exists ( #2390 )
...
adds support for pre-existing `zstd::libzstd` which is useful for
projects that bundle their own zstd in a way that doesn't get caught by
`CONFIG`
Signed-off-by: crueter <crueter@eden-emu.dev >
2026-03-30 21:26:20 -04:00
DavidKorczynski
831b64bdeb
Add two new fuzzers ( #2412 )
...
The goal is to increase code coverage by way of OSS-Fuzz. A recent code
coverage report is available at
https://storage.googleapis.com/oss-fuzz-coverage/cpp-httplib/reports/20260326/linux/report.html
Signed-off-by: David Korczynski <david@adalogics.com >
2026-03-28 15:00:10 -04:00
yhirose
32c82492de
Add workflow_dispatch trigger to docs deployment workflow
2026-03-28 11:08:25 -04:00
yhirose
b7e02de4a7
Release v0.40.0
v0.40.0
2026-03-28 00:57:24 -04:00
yhirose
a9359df42e
Optimize multipart content provider to coalesce small writes and reduce TCP packet fragmentation ( Fix #2410 )
2026-03-28 00:23:59 -04:00
yhirose
9a97e948f0
Add set_socket_opt function and corresponding test for TCP_NODELAY option ( Resolve #2411 )
2026-03-28 00:23:59 -04:00
yhirose
6fd97aeca0
Implement request body consumption and reject invalid Content-Length with Transfer-Encoding to prevent request smuggling
2026-03-27 23:16:08 -04:00
yhirose
05540e4d50
Fixed warnings
2026-03-27 22:35:22 -04:00
yhirose
ceefc14e7d
Use go-httplibbin
2026-03-27 22:26:14 -04:00
yhirose
a77284a634
Release v0.39.0
v0.39.0
2026-03-23 23:14:05 -04:00
yhirose
315a87520d
Add release script and update .gitignore for work directory
2026-03-23 23:06:37 -04:00
yhirose
703abbb53b
Prevent forwarding of authentication credentials during cross-host redirects as per RFC 9110. Add tests for basic auth and bearer token scenarios.
2026-03-23 22:32:53 -04:00
yhirose
cb8365349f
Fix #2404 (Refactor make_file_body to improve file handling and scope management)
2026-03-22 22:40:01 -04:00
yhirose
3792ce0da7
Add socket configuration options and corresponding test case for WebSocketClient. Fix #2401
2026-03-22 22:31:59 -04:00
yhirose
7178f451a4
"Building a Desktop LLM App with cpp-httplib" ( #2403 )
2026-03-21 23:31:55 -04:00
yhirose
c2bdb1c5c1
SSE Client: Update Authorization Header
...
Fixes #2402
2026-03-21 13:17:28 -04:00
yhirose
45820de332
Enhance stream handling in LongPollingTest and add new test for client close detection
2026-03-18 18:29:19 -04:00
yhirose
dd8071a7d4
Fix #2397
2026-03-17 17:39:57 -04:00
v-nam
c59ef98b3b
[cmake] Update modules.cmake to fix cmake error ( #2393 )
...
* Update modules.cmake
* tst1
2026-03-17 12:09:51 -04:00
yhirose
1c6b3ea5a0
Add status: "draft" to multiple documentation pages and enhance navigation sections
2026-03-14 23:46:14 -04:00
yhirose
4a1e9443ee
Update deprecation messages to indicate removal in v1.0.0
2026-03-14 23:32:07 -04:00
yhirose
6f2717e623
Release v0.38.0
v0.38.0
2026-03-14 23:17:13 -04:00
yhirose
257b266190
Add runtime configuration for WebSocket ping interval and related tests
2026-03-14 22:44:17 -04:00
yhirose
ba0d0b82db
Add benchmark tests and related configurations for performance evaluation
2026-03-14 22:16:53 -04:00
yhirose
5ecba74a99
Remove large data tests for GzipDecompressor and SSLClientServerTest due to memory issues
2026-03-14 21:50:55 -04:00
yhirose
ec1ffbc27d
Add Brotli compression support and corresponding tests
2026-03-14 21:42:48 -04:00