-
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.
* Updates crt native code against new ref-counting APIs
- Loading branch information
1 parent
5d19b1f
commit 297d89b
Showing
9 changed files
with
34 additions
and
26 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
11 files
Submodule aws-c-cal
updated
30 files
+12 −2 | CMakeLists.txt | |
+1 −2 | NOTICE | |
+13 −3 | include/aws/cal/cal.h | |
+13 −5 | include/aws/cal/ecc.h | |
+13 −3 | include/aws/cal/exports.h | |
+13 −3 | include/aws/cal/hash.h | |
+13 −3 | include/aws/cal/hmac.h | |
+13 −3 | include/aws/cal/private/der.h | |
+13 −3 | include/aws/cal/private/ecc.h | |
+13 −3 | source/cal.c | |
+13 −3 | source/darwin/commoncrypto_hmac.c | |
+13 −3 | source/darwin/commoncrypto_md5.c | |
+13 −3 | source/darwin/commoncrypto_sha256.c | |
+14 −9 | source/darwin/securityframework_ecc.c | |
+13 −3 | source/der.c | |
+13 −3 | source/ecc.c | |
+13 −3 | source/hash.c | |
+13 −3 | source/hmac.c | |
+13 −3 | source/unix/opensslcrypto_ecc.c | |
+13 −3 | source/unix/opensslcrypto_hash.c | |
+13 −3 | source/unix/opensslcrypto_hmac.c | |
+13 −3 | source/windows/bcrypt_ecc.c | |
+13 −3 | source/windows/bcrypt_hash.c | |
+13 −3 | source/windows/bcrypt_hmac.c | |
+13 −3 | tests/der_test.c | |
+13 −3 | tests/ecc_test.c | |
+13 −3 | tests/md5_test.c | |
+13 −3 | tests/sha256_hmac_test.c | |
+13 −3 | tests/sha256_test.c | |
+13 −3 | tests/test_case_helper.h |
Submodule aws-c-common
updated
181 files
Submodule aws-c-http
updated
9 files
+5 −0 | .tsan_suppressions.txt | |
+11 −30 | bin/elasticurl/main.c | |
+4 −1 | source/connection.c | |
+3 −1 | source/connection_manager.c | |
+8 −25 | tests/proxy_test_helper.c | |
+2 −3 | tests/proxy_test_helper.h | |
+18 −43 | tests/test_connection.c | |
+10 −46 | tests/test_connection_manager.c | |
+19 −17 | tests/test_tls.c |
Submodule aws-c-io
updated
20 files
+1 −2 | .github/workflows/clang-tsan.yml | |
+5 −0 | .tsan_suppressions.txt | |
+19 −9 | include/aws/io/channel_bootstrap.h | |
+17 −19 | include/aws/io/event_loop.h | |
+16 −6 | include/aws/io/host_resolver.h | |
+11 −3 | include/aws/io/tls_channel_handler.h | |
+101 −78 | source/channel_bootstrap.c | |
+25 −0 | source/darwin/secure_transport_tls_channel_handler.c | |
+98 −72 | source/event_loop.c | |
+375 −237 | source/host_resolver.c | |
+4 −10 | source/s2n/s2n_tls_channel_handler.c | |
+20 −1 | source/tls_channel_handler.c | |
+7 −6 | source/windows/secure_channel_tls_handler.c | |
+19 −18 | tests/channel_test.c | |
+147 −101 | tests/default_host_resolver_test.c | |
+39 −23 | tests/event_loop_test.c | |
+39 −16 | tests/exponential_backoff_retry_test.c | |
+24 −25 | tests/socket_handler_test.c | |
+34 −24 | tests/socket_test.c | |
+40 −32 | tests/tls_handler_test.c |
Submodule aws-c-mqtt
updated
6 files
+30 −16 | include/aws/mqtt/client.h | |
+1 −1 | include/aws/mqtt/private/client_impl.h | |
+143 −97 | source/client.c | |
+172 −123 | tests/aws_iot_client_test.c | |
+16 −17 | tests/connection_state_test.c | |
+156 −107 | tests/paho_client_test.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