-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule aws-c-http
updated
14 files
+15 −5 | .github/workflows/ci.yml | |
+3 −0 | .github/workflows/stale_issue.yml | |
+14 −0 | include/aws/http/connection_manager.h | |
+2 −0 | include/aws/http/http.h | |
+14 −2 | include/aws/http/private/h1_connection.h | |
+155 −47 | source/connection_manager.c | |
+123 −23 | source/h1_connection.c | |
+6 −0 | source/http.c | |
+5 −0 | source/websocket.c | |
+7 −0 | tests/CMakeLists.txt | |
+0 −3 | tests/test_connection.c | |
+82 −2 | tests/test_connection_manager.c | |
+214 −0 | tests/test_h1_client.c | |
+135 −36 | tests/test_tls.c |