-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to use stream activiation refactor in aws-c-http. (#104)
* Update to use stream activiation refactor in aws-c-http. * Updated default args for allocators to use the configured one. Updated STL allocator to allow PMR style allocators where it makes sense. Updated http to use the new stream activate() apis. Added test for stream that isn't activated. * Updated to latest http version, updated api contract and documentation to reflect. * Update to latest version of all crt libs.
- Loading branch information
1 parent
7d3c0b4
commit 4f2eb5d
Showing
25 changed files
with
246 additions
and
97 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-auth
updated
18 files
+11 −9 | .github/workflows/ci.yml | |
+2 −0 | CMakeLists.txt | |
+8 −2 | builder.json | |
+1 −0 | include/aws/auth/auth.h | |
+49 −0 | include/aws/auth/credentials.h | |
+5 −0 | include/aws/auth/private/credentials_utils.h | |
+6 −4 | source/auth.c | |
+1 −5 | source/aws_profile.c | |
+115 −30 | source/credentials.c | |
+1 −1 | source/credentials_provider_cached.c | |
+677 −0 | source/credentials_provider_ecs.c | |
+508 −178 | source/credentials_provider_imds.c | |
+11 −5 | source/credentials_provider_sts.c | |
+18 −3 | tests/CMakeLists.txt | |
+724 −0 | tests/credentials_provider_ecs_tests.c | |
+498 −128 | tests/credentials_provider_imds_tests.c | |
+6 −0 | tests/credentials_provider_sts_tests.c | |
+28 −4 | tests/credentials_provider_utils.c |
Submodule aws-c-common
updated
42 files
Submodule aws-c-compression
updated
9 files
+110 −0 | .github/workflows/ci.yml | |
+0 −23 | .github/workflows/mac-osx-ci.yml | |
+24 −1 | include/aws/compression/compression.h | |
+11 −5 | include/aws/compression/huffman.h | |
+54 −0 | source/compression.c | |
+40 −37 | source/huffman.c | |
+4 −0 | tests/CMakeLists.txt | |
+55 −1 | tests/huffman_test.c | |
+13 −9 | tests/library_test.c |
Submodule aws-c-http
updated
60 files
Submodule aws-c-io
updated
18 files
+32 −12 | .github/workflows/ci.yml | |
+3 −6 | builder.json | |
+35 −15 | include/aws/io/channel.h | |
+32 −31 | include/aws/io/channel_bootstrap.h | |
+4 −0 | include/aws/io/tls_channel_handler.h | |
+4 −2 | include/aws/testing/io_testing_channel.h | |
+86 −35 | source/channel.c | |
+62 −81 | source/channel_bootstrap.c | |
+1 −2 | source/darwin/secure_transport_tls_channel_handler.c | |
+13 −0 | source/s2n/s2n_tls_channel_handler.c | |
+2 −2 | source/stream.c | |
+37 −30 | source/windows/secure_channel_tls_handler.c | |
+1 −5 | tests/CMakeLists.txt | |
+9 −6 | tests/alpn_handler_test.c | |
+27 −220 | tests/channel_test.c | |
+2 −0 | tests/io_testing_channel_test.c | |
+19 −12 | tests/socket_handler_test.c | |
+24 −16 | tests/tls_handler_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
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
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
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
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
Oops, something went wrong.