Add request timeouts

This commit is contained in:
2025-12-12 22:36:27 +01:00
parent b361125bc3
commit 1f9411119a
12 changed files with 393 additions and 40 deletions
-2
View File
@@ -1,4 +1,2 @@
- Add connection timeouts
- Per RFC 6265, cookie values can be quoted. This parser would include the quotes in the value.
- Make sure that the proxy example doesn't stall
- Return an appropriate error code when the user waits on a client with no pending requests
+2
View File
@@ -59,6 +59,7 @@ header.append_text(desc)
header.append_file("src/includes.h")
header.append_file("src/basic.h")
header.append_file("src/parse.h")
header.append_file("src/time.h")
header.append_file("src/secure_context.h")
header.append_file("src/socket.h")
header.append_file("src/byte_queue.h")
@@ -77,6 +78,7 @@ source.append_text('#include "chttp.h"\n')
source.append_text("#endif\n")
source.append_file("src/basic.c")
source.append_file("src/parse.c")
source.append_file("src/time.c")
source.append_file("src/secure_context.c")
source.append_file("src/socket.c")
source.append_file("src/byte_queue.c")