forked from awslabs/mountpoint-s3
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Validate part checksums without sending them to S3
Even if we can't send the headers to S3, we should still retain them for our own internal checks. This change adopts a new CRT ability to decouple upload review checksums from the actual S3 headers, so that we can still validate upload checksums locally without sending them to S3. Signed-off-by: James Bornholt <[email protected]>
- Loading branch information
1 parent
7908cde
commit ba893a3
Showing
9 changed files
with
112 additions
and
42 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
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
Submodule aws-c-s3
updated
11 files
+2 −2 | include/aws/s3/private/s3_request_messages.h | |
+2 −4 | source/s3_auto_ranged_put.c | |
+38 −9 | source/s3_checksum_stream.c | |
+3 −2 | source/s3_client.c | |
+2 −4 | source/s3_copy_object.c | |
+33 −13 | source/s3_request_messages.c | |
+3 −0 | tests/CMakeLists.txt | |
+157 −3 | tests/s3_data_plane_tests.c | |
+3 −3 | tests/s3_request_messages_tests.c | |
+3 −1 | tests/s3_tester.c | |
+1 −0 | tests/s3_tester.h |
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