-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- to bring the change that hold a deep copy of publish payload, thus binding don't need to keep the buffer until complete - Proxy update
- Loading branch information
Showing
7 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule aws-c-http
updated
27 files
+22 −9 | .github/workflows/ci.yml | |
+25 −0 | .github/workflows/clang-asan-ubsan.yml | |
+25 −0 | .github/workflows/clang-tsan.yml | |
+3 −3 | CMakeLists.txt | |
+23 −34 | README.md | |
+97 −0 | build-deps.sh | |
+0 −48 | continuous-delivery/build-elasticurl-manylinux-x64.yml | |
+0 −33 | continuous-delivery/build-elasticurl-osx.sh | |
+0 −38 | continuous-delivery/build-elasticurl-unix.sh | |
+0 −35 | continuous-delivery/build-elasticurl-win64.bat | |
+6 −48 | include/aws/http/connection.h | |
+5 −1 | include/aws/http/http.h | |
+93 −11 | include/aws/http/private/proxy_impl.h | |
+493 −0 | include/aws/http/proxy.h | |
+11 −5 | source/connection_manager.c | |
+15 −2 | source/http.c | |
+458 −201 | source/proxy_connection.c | |
+1,703 −0 | source/proxy_strategy.c | |
+22 −10 | tests/CMakeLists.txt | |
+168 −14 | tests/integration_test_proxy.c | |
+215 −41 | tests/proxy_test_helper.c | |
+22 −6 | tests/proxy_test_helper.h | |
+30 −6 | tests/test_connection_manager.c | |
+1 −1 | tests/test_h1_server.c | |
+1 −1 | tests/test_h2_client.c | |
+664 −77 | tests/test_proxy.c | |
+4 −2 | tests/test_tls.c |
Submodule aws-c-mqtt
updated
10 files
+28 −0 | .github/workflows/ci.yml | |
+0 −25 | .github/workflows/clang-asan-ubsan.yml | |
+0 −25 | .github/workflows/clang-tsan.yml | |
+0 −98 | build-deps.sh | |
+1 −8 | include/aws/mqtt/private/client_impl.h | |
+25 −73 | source/client.c | |
+1 −0 | tests/CMakeLists.txt | |
+2 −0 | tests/aws_iot_client_test.c | |
+71 −0 | tests/connection_state_test.c | |
+2 −0 | tests/paho_client_test.c |
Submodule aws-c-s3
updated
18 files
+2 −2 | .github/workflows/ci.yml | |
+55 −1 | README.md | |
+11 −9 | benchmarks/package-lock.json | |
+76 −23 | include/aws/s3/private/s3_client_impl.h | |
+47 −48 | include/aws/s3/private/s3_meta_request_impl.h | |
+6 −2 | include/aws/s3/private/s3_request.h | |
+7 −1 | include/aws/s3/s3_client.h | |
+9 −21 | source/s3_auto_ranged_get.c | |
+59 −52 | source/s3_auto_ranged_put.c | |
+471 −270 | source/s3_client.c | |
+15 −50 | source/s3_default_meta_request.c | |
+267 −138 | source/s3_meta_request.c | |
+17 −4 | tests/CMakeLists.txt | |
+1,079 −5 | tests/s3_data_plane_tests.c | |
+42 −44 | tests/s3_retry_tests.c | |
+155 −49 | tests/s3_tester.c | |
+12 −24 | tests/s3_tester.h | |
+104 −0 | tests/s3_vip_tests.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters