Skip to content

Commit

Permalink
3rdparty: update unordered dense, whereami, async-mqtt5
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Dec 9, 2024
1 parent b1c92e0 commit 0648334
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/async-mqtt5
Submodule async-mqtt5 updated 82 files
+51 −5 .github/workflows/ci.yml
+1 −1 CMakeLists.txt
+56 −73 README.md
+1 −0 doc/Jamfile
+17 −3 doc/qbk/00_main.qbk
+151 −74 doc/qbk/01_intro.qbk
+57 −15 doc/qbk/02_getting_started.qbk
+7 −7 doc/qbk/03_auto_reconnect.qbk
+3 −3 doc/qbk/04_maintaining_a_stable_connection.qbk
+4 −4 doc/qbk/05_optimising_communication.qbk
+2 −3 doc/qbk/06_disconnecting_the_client.qbk
+1 −1 doc/qbk/07_asio_compliance.qbk
+1 −9 doc/qbk/10_executors.qbk
+7 −8 doc/qbk/11_multithreading.qbk
+0 −0 doc/qbk/12_examples.qbk
+0 −13 doc/qbk/examples/Examples.qbk
+87 −0 doc/qbk/reference/concepts/LoggerType.qbk
+6 −0 doc/qbk/reference/quickref.xml
+1 −0 doc/reference.dox
+13 −5 doc/reference.xsl
+16 −6 example/CMakeLists.txt
+58 −34 example/hello_world_in_coro_multithreaded_env.cpp
+68 −59 example/hello_world_in_multithreaded_env.cpp
+38 −7 example/hello_world_over_tcp.cpp
+40 −31 example/hello_world_over_tls.cpp
+35 −10 example/hello_world_over_websocket_tcp.cpp
+41 −32 example/hello_world_over_websocket_tls.cpp
+29 −6 example/multiflight_client.cpp
+54 −14 example/publisher.cpp
+56 −13 example/receiver.cpp
+65 −17 example/timeout_with_awaitable_operators.cpp
+31 −7 example/timeout_with_parallel_group.cpp
+2 −0 include/async_mqtt5.hpp
+8 −24 include/async_mqtt5/detail/async_mutex.hpp
+84 −50 include/async_mqtt5/detail/async_traits.hpp
+4 −1 include/async_mqtt5/detail/cancellable_handler.hpp
+1 −1 include/async_mqtt5/detail/control_packet.hpp
+76 −0 include/async_mqtt5/detail/log_invoke.hpp
+18 −6 include/async_mqtt5/detail/rebind_executor.hpp
+0 −65 include/async_mqtt5/detail/spinlock.hpp
+2 −2 include/async_mqtt5/detail/topic_validation.hpp
+2 −2 include/async_mqtt5/detail/traits.hpp
+3 −2 include/async_mqtt5/impl/assemble_op.hpp
+8 −19 include/async_mqtt5/impl/async_sender.hpp
+26 −17 include/async_mqtt5/impl/autoconnect_stream.hpp
+35 −73 include/async_mqtt5/impl/client_service.hpp
+5 −4 include/async_mqtt5/impl/codecs/base_decoders.hpp
+13 −13 include/async_mqtt5/impl/codecs/base_encoders.hpp
+31 −46 include/async_mqtt5/impl/connect_op.hpp
+12 −14 include/async_mqtt5/impl/disconnect_op.hpp
+16 −4 include/async_mqtt5/impl/endpoints.hpp
+24 −49 include/async_mqtt5/impl/ping_op.hpp
+2 −2 include/async_mqtt5/impl/publish_send_op.hpp
+35 −19 include/async_mqtt5/impl/read_message_op.hpp
+41 −26 include/async_mqtt5/impl/reconnect_op.hpp
+1 −1 include/async_mqtt5/impl/replies.hpp
+142 −0 include/async_mqtt5/impl/run_op.hpp
+23 −30 include/async_mqtt5/impl/sentry_op.hpp
+2 −2 include/async_mqtt5/impl/subscribe_op.hpp
+2 −2 include/async_mqtt5/impl/unsubscribe_op.hpp
+257 −0 include/async_mqtt5/logger.hpp
+103 −0 include/async_mqtt5/logger_traits.hpp
+25 −22 include/async_mqtt5/mqtt_client.hpp
+1 −0 include/async_mqtt5/property_types.hpp
+8 −1 include/async_mqtt5/types.hpp
+54 −0 include/async_mqtt5/websocket.hpp
+2 −1 test/include/test_common/packet_util.hpp
+134 −0 test/include/test_common/test_autoconnect_stream.hpp
+2 −0 test/include/test_common/test_broker.hpp
+1 −1 test/include/test_common/test_stream.hpp
+1 −0 test/integration/client.cpp
+3 −2 test/integration/client_functions.cpp
+59 −31 test/integration/executors.cpp
+10 −7 test/integration/mqtt_features.cpp
+1 −1 test/integration/receive_publish.cpp
+3 −0 test/unit/async_mutex.cpp
+6 −3 test/unit/connect_op.cpp
+1 −0 test/unit/default_completion_tokens.cpp
+200 −0 test/unit/logger.cpp
+126 −3 test/unit/reconnect_op.cpp
+1 −1 test/unit/serialization.cpp
+62 −6 test/unit/traits.cpp
2 changes: 1 addition & 1 deletion 3rdparty/unordered_dense
Submodule unordered_dense updated 4578 files
2 changes: 1 addition & 1 deletion 3rdparty/whereami
Submodule whereami updated 1 files
+1 −1 src/whereami.c

0 comments on commit 0648334

Please sign in to comment.