-
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.
Update submodules to pull in DNS resolution updates (#465)
* Update submodules to pull in DNS resolution updates
- Loading branch information
1 parent
25855db
commit 2fa5fd8
Showing
7 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
13 files
Submodule aws-c-common
updated
18 files
Submodule aws-c-http
updated
16 files
+4 −0 | .builder/action/local-server-setup.py | |
+1 −1 | CMakeLists.txt | |
+6 −0 | include/aws/http/connection.h | |
+2 −0 | include/aws/http/http.h | |
+2 −0 | include/aws/http/private/proxy_impl.h | |
+6 −0 | include/aws/http/websocket.h | |
+0 −2 | sanitizer-blacklist.txt | |
+1 −0 | source/connection.c | |
+54 −0 | source/h1_connection.c | |
+17 −12 | source/h2_stream.c | |
+6 −0 | source/http.c | |
+4 −0 | source/proxy_connection.c | |
+1 −0 | source/websocket_bootstrap.c | |
+23 −14 | tests/CMakeLists.txt | |
+144 −17 | tests/test_h1_client.c | |
+52 −0 | tests/test_h2_client.c |
Submodule aws-c-io
updated
11 files
+4 −0 | .builder/actions/pkcs11_test_setup.py | |
+1 −1 | README.md | |
+1 −0 | include/aws/io/channel_bootstrap.h | |
+7 −73 | include/aws/io/host_resolver.h | |
+3 −0 | include/aws/io/socket_channel_handler.h | |
+7 −8 | source/channel_bootstrap.c | |
+4 −0 | source/darwin/darwin_pki_utils.c | |
+74 −611 | source/host_resolver.c | |
+6 −0 | source/socket_channel_handler.c | |
+1 −11 | tests/CMakeLists.txt | |
+126 −1,488 | tests/default_host_resolver_test.c |
Submodule aws-c-mqtt
updated
11 files
+92 −8 | bin/mqtt5canary/main.c | |
+8 −0 | include/aws/mqtt/client.h | |
+10 −4 | include/aws/mqtt/private/client_impl.h | |
+3 −0 | include/aws/mqtt/private/v5/mqtt5_options_storage.h | |
+7 −1 | include/aws/mqtt/v5/mqtt5_client.h | |
+53 −15 | source/client.c | |
+7 −13 | source/client_channel_handler.c | |
+3 −1 | source/v5/mqtt5_client.c | |
+9 −0 | source/v5/mqtt5_options_storage.c | |
+5 −0 | tests/CMakeLists.txt | |
+316 −23 | tests/v3/connection_state_test.c |
Submodule aws-c-s3
updated
23 files
Submodule aws-c-sdkutils
updated
6 files
+25 −0 | .github/workflows/codecov.yml | |
+45 −2 | include/aws/sdkutils/aws_profile.h | |
+1 −1 | include/aws/sdkutils/endpoints_rule_engine.h | |
+135 −67 | source/aws_profile.c | |
+4 −1 | tests/CMakeLists.txt | |
+160 −2 | tests/aws_profile_tests.c |