-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes for logger getting cleaned up too early, also handles null term… (
#51) * Fixes for logger getting cleaned up too early, also handles null terminated buffers properly. Updated submodules
- Loading branch information
1 parent
b839e81
commit 0f1725d
Showing
12 changed files
with
80 additions
and
100 deletions.
There are no files selected for viewing
Submodule aws-c-common
updated
217 files
Submodule aws-c-http
updated
21 files
+12 −10 | bin/elasticurl/main.c | |
+14 −2 | codebuild/common-posix.sh | |
+4 −0 | codebuild/common-windows.bat | |
+3 −1 | include/aws/http/http.h | |
+80 −0 | include/aws/http/private/websocket_decoder.h | |
+67 −0 | include/aws/http/private/websocket_encoder.h | |
+99 −0 | include/aws/http/private/websocket_impl.h | |
+269 −0 | include/aws/http/websocket.h | |
+52 −0 | integration-testing/http_client_test.py | |
+5 −0 | source/connection.c | |
+15 −4 | source/connection_h1.c | |
+9 −5 | source/http.c | |
+916 −0 | source/websocket.c | |
+342 −0 | source/websocket_decoder.c | |
+373 −0 | source/websocket_encoder.c | |
+53 −0 | tests/CMakeLists.txt | |
+76 −53 | tests/test_h1_client.c | |
+321 −0 | tests/test_tls.c | |
+717 −0 | tests/test_websocket_decoder.c | |
+689 −0 | tests/test_websocket_encoder.c | |
+933 −0 | tests/test_websocket_handler.c |
Submodule aws-c-io
updated
21 files
+24 −8 | include/aws/io/file_utils.h | |
+1 −1 | include/aws/io/host_resolver.h | |
+4 −0 | include/aws/io/io.h | |
+113 −0 | include/aws/io/stream.h | |
+39 −12 | include/aws/testing/io_testing_channel.h | |
+30 −8 | source/channel_bootstrap.c | |
+8 −11 | source/file_utils_shared.c | |
+6 −6 | source/host_resolver.c | |
+12 −0 | source/io.c | |
+2 −2 | source/log_writer.c | |
+1 −1 | source/logging.c | |
+35 −0 | source/posix/file_utils.c | |
+29 −7 | source/s2n/s2n_tls_channel_handler.c | |
+371 −0 | source/stream.c | |
+34 −5 | source/tls_channel_handler.c | |
+35 −0 | source/windows/file_utils.c | |
+28 −15 | tests/CMakeLists.txt | |
+1 −1 | tests/channel_test.c | |
+2 −4 | tests/socket_handler_test.c | |
+334 −0 | tests/stream_test.c | |
+2 −2 | tests/tls_handler_test.c |
Submodule aws-c-mqtt
updated
8 files
+3 −0 | .gitignore | |
+10 −0 | codebuild/common-posix.sh | |
+16 −3 | include/aws/mqtt/mqtt.h | |
+180 −17 | source/client.c | |
+9 −0 | source/client_channel_handler.c | |
+27 −7 | source/mqtt.c | |
+122 −10 | source/topic_tree.c | |
+44 −11 | tests/aws_iot_client_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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -215,7 +215,7 @@ def get_from_env(key): | |
|
||
setuptools.setup( | ||
name="awscrt", | ||
version="v0.2.15", | ||
version="v0.2.16", | ||
author="Amazon Web Services, Inc", | ||
author_email="[email protected]", | ||
description="A common runtime for AWS Python projects", | ||
|
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