-
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
1 parent
068126d
commit e8955fb
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
8 files
+1 −0 | include/aws/auth/auth.h | |
+2 −0 | include/aws/auth/private/credentials_utils.h | |
+3 −1 | source/auth.c | |
+123 −56 | source/aws_imds_client.c | |
+1 −0 | source/credentials_utils.c | |
+2 −0 | tests/CMakeLists.txt | |
+136 −22 | tests/aws_imds_client_test.c | |
+16 −18 | tests/credentials_provider_imds_tests.c |
Submodule aws-c-common
updated
35 files
Submodule aws-c-http
updated
18 files
+9 −0 | include/aws/http/connection.h | |
+1 −0 | include/aws/http/http.h | |
+5 −4 | include/aws/http/private/connection_impl.h | |
+10 −18 | include/aws/http/private/connection_manager_system_vtable.h | |
+5 −1 | include/aws/http/private/proxy_impl.h | |
+5 −0 | include/aws/http/private/request_response_impl.h | |
+10 −0 | include/aws/http/request_response.h | |
+5 −2 | source/connection.c | |
+22 −21 | source/connection_manager.c | |
+102 −17 | source/h1_connection.c | |
+1 −0 | source/h1_stream.c | |
+3 −0 | source/http.c | |
+2 −2 | source/proxy_connection.c | |
+2 −0 | tests/CMakeLists.txt | |
+18 −18 | tests/test_connection_manager.c | |
+111 −1 | tests/test_h1_client.c | |
+2 −2 | tests/test_proxy.c | |
+2 −2 | tests/test_stream_manager.c |