-
Notifications
You must be signed in to change notification settings - Fork 5
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
9 changed files
with
10 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,8 @@ name: Lint | |
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
- '!main' | ||
branches-ignore: | ||
- 'main' | ||
|
||
jobs: | ||
clang-format: | ||
|
Submodule aws-c-auth
updated
17 files
+1 −0 | include/aws/auth/auth.h | |
+5 −0 | include/aws/auth/aws_imds_client.h | |
+5 −0 | include/aws/auth/credentials.h | |
+1 −0 | include/aws/auth/private/aws_signing.h | |
+2 −0 | include/aws/auth/private/credentials_utils.h | |
+1 −0 | include/aws/auth/signing_config.h | |
+3 −1 | source/auth.c | |
+146 −63 | source/aws_imds_client.c | |
+41 −19 | source/aws_signing.c | |
+1 −0 | source/credentials_provider_imds.c | |
+1 −0 | source/credentials_utils.c | |
+2 −1 | source/signable_http_request.c | |
+25 −0 | source/signing_config.c | |
+3 −0 | tests/CMakeLists.txt | |
+197 −31 | tests/aws_imds_client_test.c | |
+16 −18 | tests/credentials_provider_imds_tests.c | |
+3 −1 | tests/sigv4_signing_tests.c |
Submodule aws-c-cal
updated
7 files
Submodule aws-c-common
updated
36 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 |
Submodule aws-c-io
updated
3 files
+1 −1 | include/aws/io/retry_strategy.h | |
+1 −1 | source/exponential_backoff_retry_strategy.c | |
+2 −4 | source/pkcs11_tls_op_handler.c |
Submodule aws-lc
updated
from e42a4e to 80f3f3
Submodule s2n
updated
from 4654fe to 95753f
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