-
Notifications
You must be signed in to change notification settings - Fork 18
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
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule aws-c-common
updated
14 files
+8 −0 | .github/ISSUE_TEMPLATE/bug-report.yml | |
+32 −0 | .github/workflows/issue-regression-labeler.yml | |
+1 −1 | AWSCRTAndroidTestRunner/app/src/main/cpp/CMakeLists.txt | |
+3 −6 | CMakeLists.txt | |
+15 −20 | cmake/AwsCFlags.cmake | |
+6 −3 | cmake/AwsTestHarness.cmake | |
+1 −0 | include/aws/common/private/xml_parser_impl.h | |
+1 −7 | include/aws/common/ref_count.h | |
+34 −0 | include/aws/common/shutdown_types.h | |
+23 −17 | source/common.c | |
+10 −0 | source/xml_parser.c | |
+1 −0 | tests/CMakeLists.txt | |
+5 −6 | tests/memtrace_test.c | |
+36 −0 | tests/xml_parser_test.c |
Submodule aws-c-http
updated
9 files
+8 −0 | .github/ISSUE_TEMPLATE/bug-report.yml | |
+32 −0 | .github/workflows/issue-regression-labeler.yml | |
+1 −5 | CMakeLists.txt | |
+1 −1 | README.md | |
+8 −5 | include/aws/http/private/hpack.h | |
+2 −2 | source/h1_connection.c | |
+1 −1 | source/http.c | |
+1 −3 | tests/test_connection.c | |
+5 −10 | tests/test_connection_manager.c |
Submodule aws-c-io
updated
17 files
+1 −1 | .github/workflows/proof-alarm.yml | |
+1 −5 | CMakeLists.txt | |
+94 −28 | include/aws/io/event_loop.h | |
+3 −61 | include/aws/io/private/event_loop_impl.h | |
+17 −16 | include/aws/io/socket.h | |
+5 −5 | include/aws/io/tls_channel_handler.h | |
+31 −30 | include/aws/testing/io_testing_channel.h | |
+1 −1 | source/darwin/dispatch_queue_event_loop.c | |
+81 −80 | source/event_loop.c | |
+1 −1 | source/exponential_backoff_retry_strategy.c | |
+5 −0 | source/s2n/s2n_tls_channel_handler.c | |
+20 −24 | source/socket.c | |
+7 −5 | tests/event_loop_test.c | |
+4 −2 | tests/socket_handler_test.c | |
+7 −7 | tests/socket_test.c | |
+1 −1 | tests/standard_retry_test.c | |
+1 −1 | tests/tls_handler_test.c |