-
Notifications
You must be signed in to change notification settings - Fork 27
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
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule aws-c-common
updated
3 files
+4 −19 | cmake/AwsCheckHeaders.cmake | |
+1 −1 | include/aws/common/array_list.inl | |
+1 −8 | include/aws/common/math.inl |
Submodule aws-c-http
updated
29 files
+15 −5 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+3 −0 | .github/workflows/stale_issue.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+4 −1 | include/aws/http/connection.h | |
+28 −0 | include/aws/http/connection_manager.h | |
+2 −0 | include/aws/http/http.h | |
+14 −2 | include/aws/http/private/h1_connection.h | |
+3 −1 | include/aws/http/private/h2_frames.h | |
+7 −7 | include/aws/http/proxy.h | |
+3 −1 | include/aws/http/request_response.h | |
+9 −4 | include/aws/http/server.h | |
+216 −48 | source/connection_manager.c | |
+123 −23 | source/h1_connection.c | |
+7 −1 | source/http.c | |
+5 −0 | source/websocket.c | |
+8 −0 | tests/CMakeLists.txt | |
+0 −3 | tests/test_connection.c | |
+130 −2 | tests/test_connection_manager.c | |
+219 −5 | tests/test_h1_client.c | |
+4 −1 | tests/test_h2_client.c | |
+2 −1 | tests/test_h2_encoder.c | |
+2 −1 | tests/test_h2_headers.c | |
+4 −1 | tests/test_localhost_integ.c | |
+4 −1 | tests/test_message.c | |
+4 −1 | tests/test_stream_manager.c | |
+135 −36 | tests/test_tls.c | |
+3 −1 | tests/test_websocket_handler.c |