-
Notifications
You must be signed in to change notification settings - Fork 45
H2 write stream #635
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
H2 write stream #635
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
6944ef0
wip
TingDaoK 9a5b0e5
set up the test
TingDaoK 2c116b0
don't set version
TingDaoK 5965b2e
Merge branch 'main' into h2-write-stream
TingDaoK cd862c6
bunch of submodules
TingDaoK 57ebd82
Merge branch 'h2-write-stream' of github.com:awslabs/aws-crt-python i…
TingDaoK 9a30c83
oops, debug stuff
TingDaoK 8929cff
I am not allocating now
TingDaoK 52b2d41
it's slow sometime
TingDaoK 51959d2
removing the settings
TingDaoK 7ff3ffb
renaming to be less confusing
TingDaoK 2d07104
update submodules
TingDaoK 2a7a28c
updates
TingDaoK fb7b558
Merge branch 'main' into h2-write-stream
TingDaoK 93b0a0a
ise direct IP instead?
TingDaoK 97dbaae
Merge branch 'main' into h2-write-stream
TingDaoK d697c50
move to core impl
TingDaoK 3e71c93
fix
TingDaoK f47d03c
Merge branch 'main' into h2-write-stream
TingDaoK 53cb223
rename
TingDaoK aa06439
Merge branch 'main' into h2-write-stream
TingDaoK File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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-cal
updated
3 files
+1 −1 | .github/workflows/ci.yml | |
+1 −1 | README.md | |
+6 −50 | source/darwin/commoncrypto_aes.c |
Submodule aws-c-http
updated
12 files
+4 −4 | include/aws/http/exports.h | |
+3 −1 | include/aws/http/private/h2_frames.h | |
+6 −1 | source/h2_frames.c | |
+22 −32 | source/h2_stream.c | |
+1 −0 | tests/CMakeLists.txt | |
+3 −1 | tests/fuzz/fuzz_h2_decoder_correct.c | |
+4 −1 | tests/h2_test_helper.c | |
+3 −1 | tests/py_localhost/server.py | |
+1 −0 | tests/stream_test_helper.c | |
+1 −0 | tests/stream_test_helper.h | |
+64 −0 | tests/test_h2_client.c | |
+12 −3 | tests/test_h2_encoder.c |
Submodule aws-checksums
updated
10 files
+19 −1 | bin/benchmark/main.c | |
+0 −0 | include/aws/checksums/private/crc32_priv.h | |
+49 −0 | include/aws/checksums/private/crc_util.h | |
+1 −1 | source/arm/crc32c_arm.c | |
+7 −0 | source/checksums.c | |
+1 −1 | source/crc32.c | |
+1 −1 | source/crc_sw.c | |
+3 −15 | source/intel/asm/crc32c_sse42_asm.c | |
+4 −22 | source/intel/intrin/crc32c_sse42_avx512.c | |
+1 −1 | tests/crc_test.c |
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
debatable: not sure it's worth giving this an explicit constructor? It's not doing anything to actually cause the user to get an HTTP/2 connection, like setting alpn=h2 or prior_knowledge_http2. It's just forcing an error if the user didn't end up getting an HTTP/2 connection.
For better or worse, our API in C takes all possible options, because it's possible to kick off a connection and not know what you're going to get at the end.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we will add more to the connection, like settings, in the near future.