-
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.
- Compatibility with recent aws-c-mqtt API changes (interruption callbacks, etc) - Functions that had completion-callbacks now return Futures instead. - Use Python-3-style enums. - Update aws-c-common, aws-c-io, aws-c-mqtt, s2n dependencies - Scrubbed over mqtt_client_connection.c, being more careful about refcounts and error-handling.
- Loading branch information
1 parent
2f59cdf
commit 61cecbe
Showing
20 changed files
with
611 additions
and
283 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,7 @@ __pycache__/ | |
# Distribution / packaging | ||
.Python | ||
build/ | ||
deps_build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
|
Submodule aws-c-common
updated
17 files
+16 −12 | CMakeLists.txt | |
+21 −17 | cmake/AwsFeatureTests.cmake | |
+2 −2 | cmake/AwsSanitizers.cmake | |
+10 −9 | cmake/AwsSharedLibSetup.cmake | |
+1 −1 | codebuild/common-posix.sh | |
+33 −26 | include/aws/common/hash_table.h | |
+4 −4 | include/aws/common/lru_cache.h | |
+13 −3 | include/aws/common/string.h | |
+5 −0 | include/aws/common/task_scheduler.h | |
+8 −1 | sanitizer-blacklist.txt | |
+13 −18 | source/hash_table.c | |
+3 −3 | source/lru_cache.c | |
+8 −10 | source/string.c | |
+2 −2 | source/task_scheduler.c | |
+62 −26 | tests/hash_table_test.c | |
+5 −5 | tests/lru_cache_test.c | |
+12 −12 | tests/string_test.c |
Submodule aws-c-io
updated
6 files
+13 −4 | CMakeLists.txt | |
+95 −0 | build-deps.sh | |
+5 −5 | source/host_resolver.c | |
+2 −1 | source/linux/epoll_event_loop.c | |
+8 −4 | source/posix/socket.c | |
+2 −1 | tests/pipe_test.c |
Submodule aws-c-mqtt
updated
10 files
+13 −3 | CMakeLists.txt | |
+91 −36 | include/aws/mqtt/client.h | |
+2 −0 | include/aws/mqtt/mqtt.h | |
+31 −9 | include/aws/mqtt/private/client_impl.h | |
+175 −79 | source/client.c | |
+25 −6 | source/client_channel_handler.c | |
+6 −0 | source/mqtt.c | |
+8 −2 | source/topic_tree.c | |
+59 −42 | tests/aws_iot_client_test.c | |
+47 −23 | tests/paho_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
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 s2n
updated
from 2b418c to 383586
Oops, something went wrong.