-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix memory leaks in Windows TLS handler (#637)
Update to latest submodules: ``` aws-c-cal v0.7.0 -> v0.7.1 aws-c-io v0.14.9 -> v0.14.11 aws-c-http v0.8.2 -> v0.8.3 aws-c-s3 v0.5.10 -> v0.6.1 aws-lc v1.30.1 -> v1.31.0 s2n v1.4.16 -> v1.4.17 ``` Fix comes from here: awslabs/aws-c-io#652
- Loading branch information
Showing
7 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
Submodule aws-c-http
updated
22 files
+1 −1 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+4 −1 | include/aws/http/connection.h | |
+13 −0 | include/aws/http/connection_manager.h | |
+3 −1 | include/aws/http/private/h2_frames.h | |
+7 −7 | include/aws/http/proxy.h | |
+3 −1 | include/aws/http/request_response.h | |
+9 −4 | include/aws/http/server.h | |
+61 −1 | source/connection_manager.c | |
+1 −1 | source/http.c | |
+1 −0 | tests/CMakeLists.txt | |
+48 −0 | tests/test_connection_manager.c | |
+5 −5 | tests/test_h1_client.c | |
+4 −1 | tests/test_h2_client.c | |
+2 −1 | tests/test_h2_encoder.c | |
+2 −1 | tests/test_h2_headers.c | |
+4 −1 | tests/test_localhost_integ.c | |
+4 −1 | tests/test_message.c | |
+4 −1 | tests/test_stream_manager.c | |
+3 −1 | tests/test_websocket_handler.c |
Submodule aws-c-io
updated
23 files
+10 −2 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+2 −2 | include/aws/io/channel.h | |
+3 −4 | include/aws/io/channel_bootstrap.h | |
+3 −4 | include/aws/io/event_loop.h | |
+12 −0 | include/aws/io/socket.h | |
+4 −5 | include/aws/io/tls_channel_handler.h | |
+11 −18 | source/channel.c | |
+3 −8 | source/darwin/secure_transport_tls_channel_handler.c | |
+1 −1 | source/io.c | |
+2 −5 | source/message_pool.c | |
+90 −2 | source/posix/socket.c | |
+2 −4 | source/s2n/s2n_tls_channel_handler.c | |
+0 −5 | source/socket_channel_handler.c | |
+1 −1 | source/windows/iocp/iocp_event_loop.c | |
+19 −0 | source/windows/iocp/socket.c | |
+124 −120 | source/windows/secure_channel_tls_handler.c | |
+2 −0 | tests/CMakeLists.txt | |
+1 −1 | tests/socket_handler_test.c | |
+82 −7 | tests/socket_test.c | |
+27 −13 | tests/tls_handler_test.c |
Submodule aws-c-s3
updated
34 files
Submodule aws-lc
updated
from 4368aa to 05d3bf
Submodule s2n
updated
from 114cca to 073c7b
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