-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
latest submodules for TLS deliver buffer data during shutdown (#811)
Pick up latest submodules for fixing the issue where channel shutdown before last bytes in TLS handler to be delivered. awslabs/aws-c-io#650
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule aws-c-http
updated
8 files
+15 −5 | .github/workflows/ci.yml | |
+3 −0 | .github/workflows/stale_issue.yml | |
+5 −1 | include/aws/http/private/h1_connection.h | |
+56 −15 | source/h1_connection.c | |
+5 −0 | source/websocket.c | |
+1 −0 | tests/CMakeLists.txt | |
+0 −3 | tests/test_connection.c | |
+135 −36 | tests/test_tls.c |
Submodule aws-c-io
updated
10 files
+30 −3 | .github/workflows/ci.yml | |
+0 −4 | CMakeLists.txt | |
+6 −0 | include/aws/io/private/tls_channel_handler_shared.h | |
+2 −2 | source/channel.c | |
+123 −52 | source/darwin/secure_transport_tls_channel_handler.c | |
+115 −53 | source/s2n/s2n_tls_channel_handler.c | |
+1 −2 | source/socket_channel_handler.c | |
+149 −84 | source/windows/secure_channel_tls_handler.c | |
+2 −0 | tests/CMakeLists.txt | |
+341 −115 | tests/tls_handler_test.c |