-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Pick up
s2n_cleanup_thread
(#293)
Showing
7 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
6 files
+1 −0 | .gitignore | |
+2 −2 | include/aws/auth/private/credentials_utils.h | |
+49 −7 | source/credentials_utils.c | |
+2 −0 | tests/CMakeLists.txt | |
+57 −57 | tests/credentials_provider_sts_tests.c | |
+58 −0 | tests/credentials_utils_tests.c |
Submodule aws-c-io
updated
3 files
+15 −4 | CMakeLists.txt | |
+2 −1 | source/posix/socket.c | |
+8 −2 | source/s2n/s2n_tls_channel_handler.c |
Submodule aws-checksums
updated
10 files
+80 −11 | .github/workflows/ci.yml | |
+9 −3 | bin/benchmark/main.c | |
+30 −1 | include/aws/checksums/crc.h | |
+24 −0 | include/aws/checksums/private/crc_util.h | |
+12 −1 | source/crc.c | |
+8 −1 | source/crc64.c | |
+5 −6 | source/intel/intrin/crc32c_sse42_avx512.c | |
+2 −0 | tests/CMakeLists.txt | |
+16 −0 | tests/crc64_test.c | |
+16 −0 | tests/crc_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Helpers for swift to build the aws-common-runtime packages | ||
|
||
It contains: | ||
* a symlink to point s2n/unstable/cleanup.h to api/unstable/cleanup.h for building s2n with the other aws-common-runtime packages. | ||
* `aws/common/config.h`, because cmake will run for swift build. Set the config.h separately. |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../s2n/api |