From fbdf97001d8a16acee178b86a2363a676b039917 Mon Sep 17 00:00:00 2001 From: Takatoshi Kondo Date: Sun, 20 Oct 2024 09:26:45 +0900 Subject: [PATCH 1/2] Made colored log selectable. Before: Always colored. It is sometimes noisy especially store to file. After: By default colored. But you can choose non colored log using setup_log 2nd parameter. --- CHANGELOG.adoc | 3 +++ CMakeLists.txt | 4 ++-- README.md | 2 +- docker/conf/bench.conf | 2 ++ docker/conf/broker.conf | 2 ++ docker/conf/cli.conf | 2 ++ example/cl_cpp17_mqtt_pub.cpp | 5 ++++- example/cl_cpp17_mqtt_sub.cpp | 5 ++++- example/cl_cpp20coro_mqtt.cpp | 5 ++++- example/cl_cpp20coro_mqtt_pub.cpp | 5 ++++- example/cl_cpp20coro_mqtt_sub.cpp | 5 ++++- example/ep_cb_mqtt_client.cpp | 5 ++++- example/ep_cpp20coro_mqtt_client.cpp | 5 ++++- example/ep_future_mqtt_client.cpp | 5 ++++- example/ep_slcoro_mqtt_client.cpp | 5 ++++- example/ep_slcoro_mqtts_client.cpp | 5 ++++- example/ep_slcoro_ws_client.cpp | 5 ++++- example/ep_slcoro_wss_client.cpp | 5 ++++- example/footprint.cpp | 6 ++++-- example/separate_client/main.cpp | 5 ++++- example/separate_endpoint/main.cpp | 5 ++++- include/async_mqtt/util/setup_log.hpp | 15 ++++++++++----- tool/bench.conf | 3 +++ tool/bench.cpp | 19 +++++++++++-------- tool/broker.conf | 2 ++ tool/broker.cpp | 19 +++++++++++-------- tool/cli.conf | 2 ++ tool/client_cli.cpp | 19 +++++++++++-------- 28 files changed, 122 insertions(+), 48 deletions(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 9a29e8f9f..3ddcf5c24 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -2,6 +2,9 @@ = History +== 9.1.0 +* Made colored log selectable (by default true(colored)). #363 + == 9.0.3 * Fixed misuse of bound allocator. #362 * Fixed TLS example. #361 diff --git a/CMakeLists.txt b/CMakeLists.txt index 2661195bb..a2345e6c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ # http://www.boost.org/LICENSE_1_0.txt) cmake_minimum_required (VERSION 3.13.0) -project(async_mqtt_iface VERSION 9.0.3) +project(async_mqtt_iface VERSION 9.1.0) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) @@ -157,7 +157,7 @@ if(DOXYGEN_FOUND) COMMAND ${CMAKE_COMMAND} -E echo "FILE_PATTERNS = *.hpp" >> ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile COMMAND ${CMAKE_COMMAND} -E echo "OUTPUT_DIRECTORY = doc" >> ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile COMMAND ${CMAKE_COMMAND} -E echo "PROJECT_NAME = async_mqtt" >> ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile - COMMAND ${CMAKE_COMMAND} -E echo "PROJECT_NUMBER = 9.0.3" >> ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile + COMMAND ${CMAKE_COMMAND} -E echo "PROJECT_NUMBER = 9.1.0" >> ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile COMMAND ${CMAKE_COMMAND} -E echo "RECURSIVE = YES" >> ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile COMMAND ${CMAKE_COMMAND} -E echo "PREDEFINED = GENERATING_DOCUMENTATION ASYNC_MQTT_USE_TLS ASYNC_MQTT_USE_WS ASYNC_MQTT_USE_LOG" >> ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile COMMAND ${CMAKE_COMMAND} -E echo "INPUT = ${CMAKE_CURRENT_SOURCE_DIR}/include/async_mqtt" >> ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile diff --git a/README.md b/README.md index d6d1a1ba9..ea7b3c32b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Asynchronous MQTT communication library. -Version 9.0.3 [![Actions Status](https://github.com/redboltz/async_mqtt/workflows/CI/badge.svg)](https://github.com/redboltz/async_mqtt/actions)[![codecov](https://codecov.io/gh/redboltz/async_mqtt/branch/main/graph/badge.svg)](https://codecov.io/gh/redboltz/async_mqtt) +Version 9.1.0 [![Actions Status](https://github.com/redboltz/async_mqtt/workflows/CI/badge.svg)](https://github.com/redboltz/async_mqtt/actions)[![codecov](https://codecov.io/gh/redboltz/async_mqtt/branch/main/graph/badge.svg)](https://codecov.io/gh/redboltz/async_mqtt) This is Boost.Asio oriented asynchronous MQTT communication library. You can use async_mqtt to develop not only your MQTT client application but also your server (e.g. broker). Based on https://github.com/redboltz/mqtt_cpp experience, there are many improvements. See overview. diff --git a/docker/conf/bench.conf b/docker/conf/bench.conf index 49c541f1e..cbed7f067 100644 --- a/docker/conf/bench.conf +++ b/docker/conf/bench.conf @@ -157,6 +157,8 @@ limit_ms=1000 # log level. 0 to 5. fatal, error, warning, info, debug, and trace # 0 1 2 3 4 5 verbose=2 +# Log is colored by level +colored_log=true ## multiple sender settings # Set value if you use multiple publish sending clients diff --git a/docker/conf/broker.conf b/docker/conf/broker.conf index 61c851721..d642c735b 100644 --- a/docker/conf/broker.conf +++ b/docker/conf/broker.conf @@ -3,6 +3,8 @@ silent=false # log severity 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace verbose=1 +# Log is colored by level +colored_log=true # for TLS certificate=server.crt.pem private_key=server.key.pem diff --git a/docker/conf/cli.conf b/docker/conf/cli.conf index 356292298..883c340dc 100644 --- a/docker/conf/cli.conf +++ b/docker/conf/cli.conf @@ -42,3 +42,5 @@ sei=0 # log level. 0 to 5. fatal, error, warning, info, debug, and trace # 0 1 2 3 4 5 verbose=2 +# Log is colored by level +colored_log=true diff --git a/example/cl_cpp17_mqtt_pub.cpp b/example/cl_cpp17_mqtt_pub.cpp index a9fb893ac..0cc8a81e8 100644 --- a/example/cl_cpp17_mqtt_pub.cpp +++ b/example/cl_cpp17_mqtt_pub.cpp @@ -123,7 +123,10 @@ struct app { }; int main(int argc, char* argv[]) { - am::setup_log(am::severity_level::warning); + am::setup_log( + am::severity_level::warning, + true // log colored + ); if (argc != 3) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; diff --git a/example/cl_cpp17_mqtt_sub.cpp b/example/cl_cpp17_mqtt_sub.cpp index c547030d9..3c9ed6232 100644 --- a/example/cl_cpp17_mqtt_sub.cpp +++ b/example/cl_cpp17_mqtt_sub.cpp @@ -156,7 +156,10 @@ struct app { }; int main(int argc, char* argv[]) { - am::setup_log(am::severity_level::warning); + am::setup_log( + am::severity_level::warning, + true // log colored + ); if (argc != 3) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; diff --git a/example/cl_cpp20coro_mqtt.cpp b/example/cl_cpp20coro_mqtt.cpp index 1b5a7fb55..06b7a6043 100644 --- a/example/cl_cpp20coro_mqtt.cpp +++ b/example/cl_cpp20coro_mqtt.cpp @@ -199,7 +199,10 @@ proc( } int main(int argc, char* argv[]) { - am::setup_log(am::severity_level::warning); + am::setup_log( + am::severity_level::warning, + true // log colored + ); if (argc != 3) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; diff --git a/example/cl_cpp20coro_mqtt_pub.cpp b/example/cl_cpp20coro_mqtt_pub.cpp index 377c85aad..3206072fa 100644 --- a/example/cl_cpp20coro_mqtt_pub.cpp +++ b/example/cl_cpp20coro_mqtt_pub.cpp @@ -107,7 +107,10 @@ proc( } int main(int argc, char* argv[]) { - am::setup_log(am::severity_level::warning); + am::setup_log( + am::severity_level::warning, + true // log colored + ); if (argc != 3) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; diff --git a/example/cl_cpp20coro_mqtt_sub.cpp b/example/cl_cpp20coro_mqtt_sub.cpp index 6e7a0c7b5..95125fc34 100644 --- a/example/cl_cpp20coro_mqtt_sub.cpp +++ b/example/cl_cpp20coro_mqtt_sub.cpp @@ -105,7 +105,10 @@ proc( } int main(int argc, char* argv[]) { - am::setup_log(am::severity_level::warning); + am::setup_log( + am::severity_level::warning, + true // log colored + ); if (argc != 3) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; diff --git a/example/ep_cb_mqtt_client.cpp b/example/ep_cb_mqtt_client.cpp index 18530d887..294715f77 100644 --- a/example/ep_cb_mqtt_client.cpp +++ b/example/ep_cb_mqtt_client.cpp @@ -26,7 +26,10 @@ struct app { {} void start() { - am::setup_log(am::severity_level::trace); + am::setup_log( + am::severity_level::trace, + true // log colored + ); std::cout << "start" << std::endl; // Handshake undlerying layer (Name resolution and TCP handshaking) diff --git a/example/ep_cpp20coro_mqtt_client.cpp b/example/ep_cpp20coro_mqtt_client.cpp index 98279ee13..b0c285a87 100644 --- a/example/ep_cpp20coro_mqtt_client.cpp +++ b/example/ep_cpp20coro_mqtt_client.cpp @@ -145,7 +145,10 @@ proc( } int main(int argc, char* argv[]) { - am::setup_log(am::severity_level::info); + am::setup_log( + am::severity_level::info, + true // log colored + ); if (argc != 3) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; diff --git a/example/ep_future_mqtt_client.cpp b/example/ep_future_mqtt_client.cpp index eb8a0c373..7ba9fbe52 100644 --- a/example/ep_future_mqtt_client.cpp +++ b/example/ep_future_mqtt_client.cpp @@ -20,7 +20,10 @@ int main(int argc, char* argv[]) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; } - am::setup_log(am::severity_level::trace); + am::setup_log( + am::severity_level::trace, + true // log colored + ); as::io_context ioc; auto amep = am::endpoint{ diff --git a/example/ep_slcoro_mqtt_client.cpp b/example/ep_slcoro_mqtt_client.cpp index a2a8a03a3..251b820b4 100644 --- a/example/ep_slcoro_mqtt_client.cpp +++ b/example/ep_slcoro_mqtt_client.cpp @@ -217,7 +217,10 @@ int main(int argc, char* argv[]) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; } - am::setup_log(am::severity_level::trace); + am::setup_log( + am::severity_level::trace, + true // log colored + ); as::io_context ioc; app a{ioc.get_executor(), argv[1], argv[2]}; ioc.run(); diff --git a/example/ep_slcoro_mqtts_client.cpp b/example/ep_slcoro_mqtts_client.cpp index 14fcbbcbd..72b58664a 100644 --- a/example/ep_slcoro_mqtts_client.cpp +++ b/example/ep_slcoro_mqtts_client.cpp @@ -232,7 +232,10 @@ int main(int argc, char* argv[]) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; } - am::setup_log(am::severity_level::trace); + am::setup_log( + am::severity_level::trace, + true // log colored + ); as::io_context ioc; as::ssl::context ctx{as::ssl::context::tlsv12}; app a{ioc.get_executor(), argv[1], argv[2], am::force_move(ctx)}; diff --git a/example/ep_slcoro_ws_client.cpp b/example/ep_slcoro_ws_client.cpp index 8458ab6bc..637842550 100644 --- a/example/ep_slcoro_ws_client.cpp +++ b/example/ep_slcoro_ws_client.cpp @@ -217,7 +217,10 @@ int main(int argc, char* argv[]) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; } - am::setup_log(am::severity_level::trace); + am::setup_log( + am::severity_level::trace, + true // log colored + ); as::io_context ioc; app a{ioc.get_executor(), argv[1], argv[2]}; ioc.run(); diff --git a/example/ep_slcoro_wss_client.cpp b/example/ep_slcoro_wss_client.cpp index a2c0ad816..d03b712ce 100644 --- a/example/ep_slcoro_wss_client.cpp +++ b/example/ep_slcoro_wss_client.cpp @@ -220,7 +220,10 @@ int main(int argc, char* argv[]) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; } - am::setup_log(am::severity_level::trace); + am::setup_log( + am::severity_level::trace, + true // log colored + ); as::io_context ioc; app a{ioc.get_executor(), argv[1], argv[2]}; ioc.run(); diff --git a/example/footprint.cpp b/example/footprint.cpp index 0e3a0aae2..8dfb3d800 100644 --- a/example/footprint.cpp +++ b/example/footprint.cpp @@ -10,8 +10,10 @@ namespace as = boost::asio; namespace am = async_mqtt; int main() { - - am::setup_log(am::severity_level::warning); + am::setup_log( + am::severity_level::warning, + true // log colored + ); as::io_context ioc; auto amcl = am::client{ioc.get_executor()}; as::co_spawn( diff --git a/example/separate_client/main.cpp b/example/separate_client/main.cpp index 1b5a7fb55..06b7a6043 100644 --- a/example/separate_client/main.cpp +++ b/example/separate_client/main.cpp @@ -199,7 +199,10 @@ proc( } int main(int argc, char* argv[]) { - am::setup_log(am::severity_level::warning); + am::setup_log( + am::severity_level::warning, + true // log colored + ); if (argc != 3) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; diff --git a/example/separate_endpoint/main.cpp b/example/separate_endpoint/main.cpp index 98279ee13..b0c285a87 100644 --- a/example/separate_endpoint/main.cpp +++ b/example/separate_endpoint/main.cpp @@ -145,7 +145,10 @@ proc( } int main(int argc, char* argv[]) { - am::setup_log(am::severity_level::info); + am::setup_log( + am::severity_level::info, + true // log colored + ); if (argc != 3) { std::cout << "Usage: " << argv[0] << " host port" << std::endl; return -1; diff --git a/include/async_mqtt/util/setup_log.hpp b/include/async_mqtt/util/setup_log.hpp index 1bc274ff8..df5eb14e1 100644 --- a/include/async_mqtt/util/setup_log.hpp +++ b/include/async_mqtt/util/setup_log.hpp @@ -45,6 +45,8 @@ static constexpr char const* log_color_table[] { * @param threshold * Set threshold severity_level by channel * If the log severity_level >= threshold then log message outputs. + * @param colored + * If true, log is colored corresponding to the severity * * #### Requirements * - Header: async_mqtt/setup_log.hpp @@ -52,11 +54,11 @@ static constexpr char const* log_color_table[] { * */ inline -void setup_log(std::map threshold) { +void setup_log(std::map threshold, bool colored = true) { // https://www.boost.org/doc/libs/1_73_0/libs/log/doc/html/log/tutorial/advanced_filtering.html auto fmt = - [](boost::log::record_view const& rec, boost::log::formatting_ostream& strm) { + [colored](boost::log::record_view const& rec, boost::log::formatting_ostream& strm) { // Timestamp custom formatting example if (auto v = boost::log::extract("TimeStamp", rec)) { strm.imbue( @@ -74,7 +76,7 @@ void setup_log(std::map threshold) { } // Adjust severity length example if (auto v = boost::log::extract("Severity", rec)) { - strm << log_color_table[static_cast(v.get())]; + if (colored) strm << log_color_table[static_cast(v.get())]; strm << "S:" << std::setw(7) << std::left << v.get() << " "; } if (auto v = boost::log::extract("Channel", rec)) { @@ -136,6 +138,8 @@ void setup_log(std::map threshold) { * @param threshold * Set threshold severity_level for all channels * If the log severity_level >= threshold then log message outputs. + * @param colored + * If true, log is colored corresponding to the severity * * #### Requirements * - Header: async_mqtt/setup_log.hpp @@ -143,7 +147,7 @@ void setup_log(std::map threshold) { * */ inline -void setup_log(severity_level threshold = severity_level::warning) { +void setup_log(severity_level threshold = severity_level::warning, bool colored = true) { setup_log( { { "mqtt_api", threshold }, @@ -151,7 +155,8 @@ void setup_log(severity_level threshold = severity_level::warning) { { "mqtt_impl", threshold }, { "mqtt_broker", threshold }, { "mqtt_test", threshold }, - } + }, + colored ); } diff --git a/tool/bench.conf b/tool/bench.conf index 49c541f1e..209262284 100644 --- a/tool/bench.conf +++ b/tool/bench.conf @@ -158,6 +158,9 @@ limit_ms=1000 # 0 1 2 3 4 5 verbose=2 +# Log is colored by level +colored_log=true + ## multiple sender settings # Set value if you use multiple publish sending clients # The value of `manager` means number of workers. diff --git a/tool/bench.cpp b/tool/bench.cpp index cd7b60a23..7df7dd7a6 100644 --- a/tool/bench.cpp +++ b/tool/bench.cpp @@ -1343,6 +1343,11 @@ int main(int argc, char *argv[]) { boost::program_options::value()->default_value(1), "set verbose level, possible values:\n 0 - Fatal\n 1 - Error\n 2 - Warning\n 3 - Info\n 4 - Debug\n 5 - Trace" ) + ( + "colored_log", + boost::program_options::value()->default_value(true), + "if set true, log output is colored corresponding to the severity, otherwise not colored" + ) ( "cacert", boost::program_options::value(), @@ -1447,26 +1452,24 @@ int main(int argc, char *argv[]) { #if defined(ASYNC_MQTT_USE_LOG) switch (vm["verbose"].as()) { case 5: - am::setup_log(am::severity_level::trace); + am::setup_log(am::severity_level::trace, vm["colored_log"].as()); break; case 4: - am::setup_log(am::severity_level::debug); + am::setup_log(am::severity_level::debug, vm["colored_log"].as()); break; case 3: - am::setup_log(am::severity_level::info); + am::setup_log(am::severity_level::info, vm["colored_log"].as()); break; case 2: - am::setup_log(am::severity_level::warning); + am::setup_log(am::severity_level::warning, vm["colored_log"].as()); break; default: - am::setup_log(am::severity_level::error); + am::setup_log(am::severity_level::error, vm["colored_log"].as()); break; case 0: - am::setup_log(am::severity_level::fatal); + am::setup_log(am::severity_level::fatal, vm["colored_log"].as()); break; } -#else // defined(ASYNC_MQTT_USE_LOG) - am::setup_log(); #endif // defined(ASYNC_MQTT_USE_LOG) if (!vm.count("target")) { diff --git a/tool/broker.conf b/tool/broker.conf index 61c851721..d642c735b 100644 --- a/tool/broker.conf +++ b/tool/broker.conf @@ -3,6 +3,8 @@ silent=false # log severity 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace verbose=1 +# Log is colored by level +colored_log=true # for TLS certificate=server.crt.pem private_key=server.key.pem diff --git a/tool/broker.cpp b/tool/broker.cpp index 99457cc1e..5a6a55617 100644 --- a/tool/broker.cpp +++ b/tool/broker.cpp @@ -747,6 +747,11 @@ int main(int argc, char *argv[]) { boost::program_options::value()->default_value(1), "set verbose level, possible values:\n 0 - Fatal\n 1 - Error\n 2 - Warning\n 3 - Info\n 4 - Debug\n 5 - Trace" ) + ( + "colored_log", + boost::program_options::value()->default_value(true), + "if set true, log output is colored corresponding to the severity, otherwise not colored" + ) ( "certificate", boost::program_options::value(), @@ -857,26 +862,24 @@ int main(int argc, char *argv[]) { #if defined(ASYNC_MQTT_USE_LOG) switch (vm["verbose"].as()) { case 5: - am::setup_log(am::severity_level::trace); + am::setup_log(am::severity_level::trace, vm["colored_log"].as()); break; case 4: - am::setup_log(am::severity_level::debug); + am::setup_log(am::severity_level::debug, vm["colored_log"].as()); break; case 3: - am::setup_log(am::severity_level::info); + am::setup_log(am::severity_level::info, vm["colored_log"].as()); break; case 2: - am::setup_log(am::severity_level::warning); + am::setup_log(am::severity_level::warning, vm["colored_log"].as()); break; default: - am::setup_log(am::severity_level::error); + am::setup_log(am::severity_level::error, vm["colored_log"].as()); break; case 0: - am::setup_log(am::severity_level::fatal); + am::setup_log(am::severity_level::fatal, vm["colored_log"].as()); break; } -#else // defined(ASYNC_MQTT_USE_LOG) - am::setup_log(); #endif // defined(ASYNC_MQTT_USE_LOG) run_broker(vm); diff --git a/tool/cli.conf b/tool/cli.conf index 356292298..883c340dc 100644 --- a/tool/cli.conf +++ b/tool/cli.conf @@ -42,3 +42,5 @@ sei=0 # log level. 0 to 5. fatal, error, warning, info, debug, and trace # 0 1 2 3 4 5 verbose=2 +# Log is colored by level +colored_log=true diff --git a/tool/client_cli.cpp b/tool/client_cli.cpp index 33b83a9e6..71b76b134 100644 --- a/tool/client_cli.cpp +++ b/tool/client_cli.cpp @@ -1009,6 +1009,11 @@ int main(int argc, char* argv[]) { boost::program_options::value()->default_value(1), "set verbose level, possible values:\n 0 - Fatal\n 1 - Error\n 2 - Warning\n 3 - Info\n 4 - Debug\n 5 - Trace" ) + ( + "colored_log", + boost::program_options::value()->default_value(true), + "if set true, log output is colored corresponding to the severity, otherwise not colored" + ) ; @@ -1070,26 +1075,24 @@ int main(int argc, char* argv[]) { #if defined(ASYNC_MQTT_USE_LOG) switch (vm["verbose"].as()) { case 5: - am::setup_log(am::severity_level::trace); + am::setup_log(am::severity_level::trace, vm["colored_log"].as()); break; case 4: - am::setup_log(am::severity_level::debug); + am::setup_log(am::severity_level::debug, vm["colored_log"].as()); break; case 3: - am::setup_log(am::severity_level::info); + am::setup_log(am::severity_level::info, vm["colored_log"].as()); break; case 2: - am::setup_log(am::severity_level::warning); + am::setup_log(am::severity_level::warning, vm["colored_log"].as()); break; default: - am::setup_log(am::severity_level::error); + am::setup_log(am::severity_level::error, vm["colored_log"].as()); break; case 0: - am::setup_log(am::severity_level::fatal); + am::setup_log(am::severity_level::fatal, vm["colored_log"].as()); break; } -#else // defined(ASYNC_MQTT_USE_LOG) - am::setup_log(); #endif // defined(ASYNC_MQTT_USE_LOG) if (!vm.count("host")) { From fb68801c59235b11ad0a91d296b16d7e23b5f7e3 Mon Sep 17 00:00:00 2001 From: Takatoshi Kondo Date: Sun, 20 Oct 2024 09:29:07 +0900 Subject: [PATCH 2/2] Updated documents. --- doc/CHANGELOG.html | 12 + doc/api/all_8hpp_source.html | 2 +- doc/api/annotated.html | 2 +- doc/api/buffer_8hpp_source.html | 2 +- ...ffer__to__packet__variant_8hpp_source.html | 2 +- ...sync__mqtt_1_1basic__endpoint-members.html | 2 +- .../classasync__mqtt_1_1basic__endpoint.html | 2 +- ...qtt_1_1basic__packet__variant-members.html | 2 +- ...async__mqtt_1_1basic__packet__variant.html | 2 +- ...basic__store__packet__variant-members.html | 2 +- ...mqtt_1_1basic__store__packet__variant.html | 2 +- .../classasync__mqtt_1_1buffer-members.html | 2 +- doc/api/classasync__mqtt_1_1buffer.html | 2 +- .../classasync__mqtt_1_1client-members.html | 2 +- doc/api/classasync__mqtt_1_1client.html | 2 +- ...1assigned__client__identifier-members.html | 2 +- ...perty_1_1assigned__client__identifier.html | 2 +- ...perty_1_1authentication__data-members.html | 2 +- ...t_1_1property_1_1authentication__data.html | 2 +- ...rty_1_1authentication__method-members.html | 2 +- ...1_1property_1_1authentication__method.html | 2 +- ..._1_1property_1_1content__type-members.html | 2 +- ...nc__mqtt_1_1property_1_1content__type.html | 2 +- ...property_1_1correlation__data-members.html | 2 +- ...mqtt_1_1property_1_1correlation__data.html | 2 +- ...erty_1_1maximum__packet__size-members.html | 2 +- ..._1_1property_1_1maximum__packet__size.html | 2 +- ...t_1_1property_1_1maximum__qos-members.html | 2 +- ...ync__mqtt_1_1property_1_1maximum__qos.html | 2 +- ..._1_1message__expiry__interval-members.html | 2 +- ...property_1_1message__expiry__interval.html | 2 +- ...1_1payload__format__indicator-members.html | 2 +- ...roperty_1_1payload__format__indicator.html | 2 +- ...1_1property_1_1reason__string-members.html | 2 +- ...c__mqtt_1_1property_1_1reason__string.html | 2 +- ...1property_1_1receive__maximum-members.html | 2 +- ..._mqtt_1_1property_1_1receive__maximum.html | 2 +- ...request__problem__information-members.html | 2 +- ...erty_1_1request__problem__information.html | 2 +- ...equest__response__information-members.html | 2 +- ...rty_1_1request__response__information.html | 2 +- ...erty_1_1response__information-members.html | 2 +- ..._1_1property_1_1response__information.html | 2 +- ..._1property_1_1response__topic-members.html | 2 +- ...__mqtt_1_1property_1_1response__topic.html | 2 +- ...property_1_1retain__available-members.html | 2 +- ...mqtt_1_1property_1_1retain__available.html | 2 +- ...operty_1_1server__keep__alive-members.html | 2 +- ...tt_1_1property_1_1server__keep__alive.html | 2 +- ...property_1_1server__reference-members.html | 2 +- ...mqtt_1_1property_1_1server__reference.html | 2 +- ..._1_1session__expiry__interval-members.html | 2 +- ...property_1_1session__expiry__interval.html | 2 +- ...ared__subscription__available-members.html | 2 +- ...ty_1_1shared__subscription__available.html | 2 +- ...y_1_1subscription__identifier-members.html | 2 +- ...1property_1_1subscription__identifier.html | 2 +- ...iption__identifier__available-members.html | 2 +- ..._1subscription__identifier__available.html | 2 +- ...t_1_1property_1_1topic__alias-members.html | 2 +- ...ync__mqtt_1_1property_1_1topic__alias.html | 2 +- ...erty_1_1topic__alias__maximum-members.html | 2 +- ..._1_1property_1_1topic__alias__maximum.html | 2 +- ...1_1property_1_1user__property-members.html | 2 +- ...c__mqtt_1_1property_1_1user__property.html | 2 +- ...card__subscription__available-members.html | 2 +- ..._1_1wildcard__subscription__available.html | 2 +- ...erty_1_1will__delay__interval-members.html | 2 +- ..._1_1property_1_1will__delay__interval.html | 2 +- ...nc__mqtt_1_1property__variant-members.html | 2 +- ...classasync__mqtt_1_1property__variant.html | 2 +- ...ync__mqtt_1_1topic__sharename-members.html | 2 +- .../classasync__mqtt_1_1topic__sharename.html | 2 +- ...async__mqtt_1_1topic__subopts-members.html | 2 +- .../classasync__mqtt_1_1topic__subopts.html | 2 +- ...1__1_1_1basic__puback__packet-members.html | 2 +- ..._1_1v3__1__1_1_1basic__puback__packet.html | 2 +- ...__1_1_1basic__pubcomp__packet-members.html | 2 +- ...1_1v3__1__1_1_1basic__pubcomp__packet.html | 2 +- ...__1_1_1basic__publish__packet-members.html | 2 +- ...1_1v3__1__1_1_1basic__publish__packet.html | 2 +- ...1__1_1_1basic__pubrec__packet-members.html | 2 +- ..._1_1v3__1__1_1_1basic__pubrec__packet.html | 2 +- ...1__1_1_1basic__pubrel__packet-members.html | 2 +- ..._1_1v3__1__1_1_1basic__pubrel__packet.html | 2 +- ...1__1_1_1basic__suback__packet-members.html | 2 +- ..._1_1v3__1__1_1_1basic__suback__packet.html | 2 +- ...1_1_1basic__subscribe__packet-members.html | 2 +- ...1v3__1__1_1_1basic__subscribe__packet.html | 2 +- ..._1_1_1basic__unsuback__packet-members.html | 2 +- ..._1v3__1__1_1_1basic__unsuback__packet.html | 2 +- ...1_1basic__unsubscribe__packet-members.html | 2 +- ...3__1__1_1_1basic__unsubscribe__packet.html | 2 +- ..._1v3__1__1_1_1connack__packet-members.html | 2 +- ...__mqtt_1_1v3__1__1_1_1connack__packet.html | 2 +- ..._1v3__1__1_1_1connect__packet-members.html | 2 +- ...__mqtt_1_1v3__1__1_1_1connect__packet.html | 2 +- ...3__1__1_1_1disconnect__packet-members.html | 2 +- ...qtt_1_1v3__1__1_1_1disconnect__packet.html | 2 +- ..._1v3__1__1_1_1pingreq__packet-members.html | 2 +- ...__mqtt_1_1v3__1__1_1_1pingreq__packet.html | 2 +- ...1v3__1__1_1_1pingresp__packet-members.html | 2 +- ..._mqtt_1_1v3__1__1_1_1pingresp__packet.html | 2 +- ...c__mqtt_1_1v5_1_1auth__packet-members.html | 2 +- ...lassasync__mqtt_1_1v5_1_1auth__packet.html | 2 +- ..._1v5_1_1basic__puback__packet-members.html | 2 +- ...__mqtt_1_1v5_1_1basic__puback__packet.html | 2 +- ...1v5_1_1basic__pubcomp__packet-members.html | 2 +- ..._mqtt_1_1v5_1_1basic__pubcomp__packet.html | 2 +- ...1v5_1_1basic__publish__packet-members.html | 2 +- ..._mqtt_1_1v5_1_1basic__publish__packet.html | 2 +- ..._1v5_1_1basic__pubrec__packet-members.html | 2 +- ...__mqtt_1_1v5_1_1basic__pubrec__packet.html | 2 +- ..._1v5_1_1basic__pubrel__packet-members.html | 2 +- ...__mqtt_1_1v5_1_1basic__pubrel__packet.html | 2 +- ..._1v5_1_1basic__suback__packet-members.html | 2 +- ...__mqtt_1_1v5_1_1basic__suback__packet.html | 2 +- ...5_1_1basic__subscribe__packet-members.html | 2 +- ...qtt_1_1v5_1_1basic__subscribe__packet.html | 2 +- ...v5_1_1basic__unsuback__packet-members.html | 2 +- ...mqtt_1_1v5_1_1basic__unsuback__packet.html | 2 +- ...1_1basic__unsubscribe__packet-members.html | 2 +- ...t_1_1v5_1_1basic__unsubscribe__packet.html | 2 +- ...mqtt_1_1v5_1_1connack__packet-members.html | 2 +- ...sasync__mqtt_1_1v5_1_1connack__packet.html | 2 +- ...mqtt_1_1v5_1_1connect__packet-members.html | 2 +- ...sasync__mqtt_1_1v5_1_1connect__packet.html | 2 +- ...t_1_1v5_1_1disconnect__packet-members.html | 2 +- ...ync__mqtt_1_1v5_1_1disconnect__packet.html | 2 +- ...mqtt_1_1v5_1_1pingreq__packet-members.html | 2 +- ...sasync__mqtt_1_1v5_1_1pingreq__packet.html | 2 +- ...qtt_1_1v5_1_1pingresp__packet-members.html | 2 +- ...async__mqtt_1_1v5_1_1pingresp__packet.html | 2 +- doc/api/classasync__mqtt_1_1will-members.html | 2 +- doc/api/classasync__mqtt_1_1will.html | 2 +- doc/api/classes.html | 2 +- ..._01async__mqtt_1_1buffer_01_4-members.html | 2 +- ..._1hash_3_01async__mqtt_1_1buffer_01_4.html | 2 +- doc/api/client_8hpp_source.html | 2 +- doc/api/client__fwd_8hpp_source.html | 2 +- .../control__packet__type_8hpp_source.html | 2 +- ...customized__basic__stream_8hpp_source.html | 2 +- doc/api/customized__ssl__stream_8hpp.html | 2 +- .../customized__ssl__stream_8hpp_source.html | 2 +- .../customized__websocket__stream_8hpp.html | 2 +- ...omized__websocket__stream_8hpp_source.html | 2 +- .../dir_cce41e6148f04805f4e76e6a36ba88d6.html | 2 +- .../dir_ce1a31e6a52137e313c4ed05ef460346.html | 2 +- .../dir_d44c64559bbebec7f509842c48db8b23.html | 2 +- .../dir_df0bffcb61356486763cc61cf65485e2.html | 2 +- .../dir_f8efeb8e1feb6bbd3b8b0bf040091d61.html | 2 +- doc/api/doxygen_crawl.html | 4 +- doc/api/endian__convert_8hpp_source.html | 2 +- doc/api/endpoint_8hpp_source.html | 2 +- doc/api/endpoint__fwd_8hpp_source.html | 2 +- doc/api/error_8hpp_source.html | 2 +- doc/api/files.html | 2 +- doc/api/functions.html | 2 +- doc/api/functions_b.html | 2 +- doc/api/functions_c.html | 2 +- doc/api/functions_d.html | 2 +- doc/api/functions_e.html | 2 +- doc/api/functions_f.html | 2 +- doc/api/functions_func.html | 2 +- doc/api/functions_func_b.html | 2 +- doc/api/functions_func_c.html | 2 +- doc/api/functions_func_d.html | 2 +- doc/api/functions_func_e.html | 2 +- doc/api/functions_func_f.html | 2 +- doc/api/functions_func_g.html | 2 +- doc/api/functions_func_h.html | 2 +- doc/api/functions_func_i.html | 2 +- doc/api/functions_func_k.html | 2 +- doc/api/functions_func_l.html | 2 +- doc/api/functions_func_m.html | 2 +- doc/api/functions_func_n.html | 2 +- doc/api/functions_func_o.html | 2 +- doc/api/functions_func_p.html | 2 +- doc/api/functions_func_r.html | 2 +- doc/api/functions_func_s.html | 2 +- doc/api/functions_func_t.html | 2 +- doc/api/functions_func_u.html | 2 +- doc/api/functions_func_v.html | 2 +- doc/api/functions_func_w.html | 2 +- doc/api/functions_func_~.html | 2 +- doc/api/functions_g.html | 2 +- doc/api/functions_h.html | 2 +- doc/api/functions_i.html | 2 +- doc/api/functions_k.html | 2 +- doc/api/functions_l.html | 2 +- doc/api/functions_m.html | 2 +- doc/api/functions_n.html | 2 +- doc/api/functions_o.html | 2 +- doc/api/functions_p.html | 2 +- doc/api/functions_r.html | 2 +- doc/api/functions_rela.html | 2 +- doc/api/functions_s.html | 2 +- doc/api/functions_t.html | 2 +- doc/api/functions_type.html | 2 +- doc/api/functions_u.html | 2 +- doc/api/functions_v.html | 2 +- doc/api/functions_vars.html | 2 +- doc/api/functions_w.html | 2 +- doc/api/functions_~.html | 2 +- doc/api/graph_legend.html | 2 +- doc/api/group__auth__reason__code.html | 2 +- doc/api/group__auth__v5.html | 2 +- doc/api/group__buffer.html | 2 +- doc/api/group__client.html | 2 +- doc/api/group__connack__v3__1__1.html | 2 +- doc/api/group__connack__v5.html | 2 +- doc/api/group__connect__reason__code.html | 2 +- doc/api/group__connect__return__code.html | 2 +- doc/api/group__connect__v3__1__1.html | 2 +- doc/api/group__connect__v5.html | 2 +- doc/api/group__connection.html | 2 +- doc/api/group__disconnect__reason__code.html | 2 +- doc/api/group__disconnect__v3__1__1.html | 2 +- doc/api/group__disconnect__v5.html | 2 +- doc/api/group__endpoint.html | 2 +- doc/api/group__error.html | 2 +- doc/api/group__error__reporting.html | 2 +- doc/api/group__log.html | 40 ++-- doc/api/group__log.js | 4 +- doc/api/group__mqtt.html | 2 +- doc/api/group__mqtt__error.html | 2 +- doc/api/group__packet.html | 2 +- doc/api/group__packet__detail.html | 2 +- doc/api/group__packet__v3__1__1.html | 2 +- doc/api/group__packet__v5.html | 2 +- doc/api/group__packet__variant.html | 2 +- doc/api/group__packet__variant__detail.html | 2 +- doc/api/group__pingreq__v3__1__1.html | 2 +- doc/api/group__pingreq__v5.html | 2 +- doc/api/group__pingresp__v3__1__1.html | 2 +- doc/api/group__pingresp__v5.html | 2 +- doc/api/group__predefined__customize.html | 2 +- doc/api/group__predefined__layer.html | 2 +- doc/api/group__predefined__layer__mqtt.html | 2 +- doc/api/group__predefined__layer__mqtts.html | 2 +- doc/api/group__predefined__layer__ws.html | 2 +- doc/api/group__predefined__layer__wss.html | 2 +- doc/api/group__property.html | 2 +- doc/api/group__property__internal.html | 2 +- doc/api/group__property__variant.html | 2 +- doc/api/group__puback__reason__code.html | 2 +- doc/api/group__puback__v3__1__1.html | 2 +- doc/api/group__puback__v3__1__1__detail.html | 2 +- doc/api/group__puback__v5.html | 2 +- doc/api/group__puback__v5__detail.html | 2 +- doc/api/group__pubcomp__reason__code.html | 2 +- doc/api/group__pubcomp__v3__1__1.html | 2 +- doc/api/group__pubcomp__v3__1__1__detail.html | 2 +- doc/api/group__pubcomp__v5.html | 2 +- doc/api/group__pubcomp__v5__detail.html | 2 +- doc/api/group__publish__options.html | 2 +- doc/api/group__publish__v3__1__1.html | 2 +- doc/api/group__publish__v3__1__1__detail.html | 2 +- doc/api/group__publish__v5.html | 2 +- doc/api/group__publish__v5__detail.html | 2 +- doc/api/group__pubrec__reason__code.html | 2 +- doc/api/group__pubrec__v3__1__1.html | 2 +- doc/api/group__pubrec__v3__1__1__detail.html | 2 +- doc/api/group__pubrec__v5.html | 2 +- doc/api/group__pubrec__v5__detail.html | 2 +- doc/api/group__pubrel__reason__code.html | 2 +- doc/api/group__pubrel__v3__1__1.html | 2 +- doc/api/group__pubrel__v3__1__1__detail.html | 2 +- doc/api/group__pubrel__v5.html | 2 +- doc/api/group__pubrel__v5__detail.html | 2 +- doc/api/group__qos.html | 2 +- doc/api/group__role.html | 2 +- doc/api/group__store__packet__variant.html | 2 +- ...group__store__packet__variant__detail.html | 2 +- doc/api/group__suback__reason__code.html | 2 +- doc/api/group__suback__return__code.html | 2 +- doc/api/group__suback__v3__1__1.html | 2 +- doc/api/group__suback__v3__1__1__detail.html | 2 +- doc/api/group__suback__v5.html | 2 +- doc/api/group__suback__v5__detail.html | 2 +- doc/api/group__subscribe__options.html | 2 +- doc/api/group__subscribe__v3__1__1.html | 2 +- .../group__subscribe__v3__1__1__detail.html | 2 +- doc/api/group__subscribe__v5.html | 2 +- doc/api/group__subscribe__v5__detail.html | 2 +- doc/api/group__underlying__customize.html | 2 +- doc/api/group__underlying__layer.html | 2 +- doc/api/group__unsuback__reason__code.html | 2 +- doc/api/group__unsuback__v3__1__1.html | 2 +- .../group__unsuback__v3__1__1__detail.html | 2 +- doc/api/group__unsuback__v5.html | 2 +- doc/api/group__unsuback__v5__detail.html | 2 +- doc/api/group__unsubscribe__v3__1__1.html | 2 +- .../group__unsubscribe__v3__1__1__detail.html | 2 +- doc/api/group__unsubscribe__v5.html | 2 +- doc/api/group__unsubscribe__v5__detail.html | 2 +- doc/api/host__port_8hpp_source.html | 2 +- doc/api/index.html | 2 +- doc/api/inline_8hpp_source.html | 2 +- doc/api/ioc__queue_8hpp_source.html | 2 +- doc/api/json__like__out_8hpp_source.html | 2 +- doc/api/log_8hpp_source.html | 2 +- doc/api/move_8hpp_source.html | 2 +- doc/api/mqtt_8hpp_source.html | 2 +- doc/api/mqtts_8hpp_source.html | 2 +- doc/api/navtreeindex3.js | 4 +- doc/api/overload_8hpp_source.html | 2 +- doc/api/packet__fwd_8hpp_source.html | 2 +- doc/api/packet__helper_8hpp_source.html | 2 +- doc/api/packet__id__manager_8hpp_source.html | 2 +- doc/api/packet__id__type_8hpp_source.html | 2 +- doc/api/packet__iterator_8hpp_source.html | 2 +- doc/api/packet__traits_8hpp_source.html | 2 +- doc/api/packet__variant_8hpp_source.html | 2 +- doc/api/packet__variant__fwd_8hpp_source.html | 2 +- doc/api/property_8hpp_source.html | 2 +- doc/api/property__id_8hpp_source.html | 2 +- doc/api/property__variant_8hpp_source.html | 2 +- doc/api/protocol__version_8hpp_source.html | 2 +- doc/api/pubopts_8hpp_source.html | 2 +- doc/api/qos_8hpp_source.html | 2 +- doc/api/qos__util_8hpp_source.html | 2 +- doc/api/role_8hpp_source.html | 2 +- doc/api/scope__guard_8hpp_source.html | 2 +- doc/api/search/all_15.js | 2 +- doc/api/search/functions_11.js | 2 +- doc/api/setup__log_8hpp_source.html | 209 +++++++++--------- doc/api/shared__ptr__array_8hpp_source.html | 2 +- doc/api/src_8hpp_source.html | 2 +- doc/api/static__vector_8hpp_source.html | 2 +- doc/api/store_8hpp_source.html | 2 +- .../store__packet__variant_8hpp_source.html | 2 +- ...ore__packet__variant__fwd_8hpp_source.html | 2 +- doc/api/stream_8hpp_source.html | 2 +- doc/api/stream__fwd_8hpp_source.html | 2 +- doc/api/stream__traits_8hpp_source.html | 2 +- doc/api/string__view__helper_8hpp_source.html | 2 +- ..._endpoint_1_1rebind__executor-members.html | 2 +- ..._1basic__endpoint_1_1rebind__executor.html | 2 +- ...sync__mqtt_1_1basic__packet__id__type.html | 2 +- ...qtt_1_1client_1_1pubres__type-members.html | 2 +- ...async__mqtt_1_1client_1_1pubres__type.html | 2 +- ...1_1client_1_1rebind__executor-members.html | 2 +- ...c__mqtt_1_1client_1_1rebind__executor.html | 2 +- ...structasync__mqtt_1_1layer__customize.html | 2 +- ...tocol_00_01Executor_01_4_01_4-members.html | 2 +- ..._3_01Protocol_00_01Executor_01_4_01_4.html | 2 +- ...tream_3_01NextLayer_01_4_01_4-members.html | 2 +- ...ssl_1_1stream_3_01NextLayer_01_4_01_4.html | 2 +- ...tream_3_01NextLayer_01_4_01_4-members.html | 2 +- ...ket_1_1stream_3_01NextLayer_01_4_01_4.html | 2 +- ...uctasync__mqtt_1_1pub_1_1opts-members.html | 2 +- doc/api/structasync__mqtt_1_1pub_1_1opts.html | 2 +- ...uctasync__mqtt_1_1sub_1_1opts-members.html | 2 +- doc/api/structasync__mqtt_1_1sub_1_1opts.html | 2 +- doc/api/subopts_8hpp_source.html | 2 +- doc/api/topic__alias__recv_8hpp_source.html | 2 +- doc/api/topic__alias__send_8hpp_source.html | 2 +- doc/api/topic__sharename_8hpp_source.html | 2 +- doc/api/topic__subopts_8hpp_source.html | 2 +- doc/api/topics.html | 2 +- doc/api/utf8validate_8hpp_source.html | 2 +- doc/api/v3__1__1__connack_8hpp_source.html | 2 +- doc/api/v3__1__1__connect_8hpp_source.html | 2 +- doc/api/v3__1__1__disconnect_8hpp_source.html | 2 +- doc/api/v3__1__1__pingreq_8hpp_source.html | 2 +- doc/api/v3__1__1__pingresp_8hpp_source.html | 2 +- doc/api/v3__1__1__puback_8hpp_source.html | 2 +- doc/api/v3__1__1__pubcomp_8hpp_source.html | 2 +- doc/api/v3__1__1__publish_8hpp_source.html | 2 +- doc/api/v3__1__1__pubrec_8hpp_source.html | 2 +- doc/api/v3__1__1__pubrel_8hpp_source.html | 2 +- doc/api/v3__1__1__suback_8hpp_source.html | 2 +- doc/api/v3__1__1__subscribe_8hpp_source.html | 2 +- doc/api/v3__1__1__unsuback_8hpp_source.html | 2 +- .../v3__1__1__unsubscribe_8hpp_source.html | 2 +- doc/api/v5__auth_8hpp_source.html | 2 +- doc/api/v5__connack_8hpp_source.html | 2 +- doc/api/v5__connect_8hpp_source.html | 2 +- doc/api/v5__disconnect_8hpp_source.html | 2 +- doc/api/v5__pingreq_8hpp_source.html | 2 +- doc/api/v5__pingresp_8hpp_source.html | 2 +- doc/api/v5__puback_8hpp_source.html | 2 +- doc/api/v5__pubcomp_8hpp_source.html | 2 +- doc/api/v5__publish_8hpp_source.html | 2 +- doc/api/v5__pubrec_8hpp_source.html | 2 +- doc/api/v5__pubrel_8hpp_source.html | 2 +- doc/api/v5__suback_8hpp_source.html | 2 +- doc/api/v5__subscribe_8hpp_source.html | 2 +- doc/api/v5__unsuback_8hpp_source.html | 2 +- doc/api/v5__unsubscribe_8hpp_source.html | 2 +- doc/api/value__allocator_8hpp_source.html | 2 +- doc/api/variable__bytes_8hpp_source.html | 2 +- doc/api/will_8hpp_source.html | 2 +- doc/api/ws_8hpp_source.html | 2 +- doc/api/wss_8hpp_source.html | 2 +- doc/functionality/logging.html | 6 +- 397 files changed, 543 insertions(+), 516 deletions(-) diff --git a/doc/CHANGELOG.html b/doc/CHANGELOG.html index 65f6290c9..e566614f6 100644 --- a/doc/CHANGELOG.html +++ b/doc/CHANGELOG.html @@ -64,6 +64,18 @@

History

+

9.1.0

+
+
+
    +
  • +

    Made colored log selectable (by default true(colored)). #363

    +
  • +
+
+
+
+

9.0.3

diff --git a/doc/api/all_8hpp_source.html b/doc/api/all_8hpp_source.html index 9f59bf92e..2c698f4cc 100644 --- a/doc/api/all_8hpp_source.html +++ b/doc/api/all_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/annotated.html b/doc/api/annotated.html index 863a2dffc..e1e12678d 100644 --- a/doc/api/annotated.html +++ b/doc/api/annotated.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/buffer_8hpp_source.html b/doc/api/buffer_8hpp_source.html index 6d5f14b5a..b09af649d 100644 --- a/doc/api/buffer_8hpp_source.html +++ b/doc/api/buffer_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/buffer__to__packet__variant_8hpp_source.html b/doc/api/buffer__to__packet__variant_8hpp_source.html index 9d33568d7..1e94736b0 100644 --- a/doc/api/buffer__to__packet__variant_8hpp_source.html +++ b/doc/api/buffer__to__packet__variant_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1basic__endpoint-members.html b/doc/api/classasync__mqtt_1_1basic__endpoint-members.html index a619ed573..d1fccdce9 100644 --- a/doc/api/classasync__mqtt_1_1basic__endpoint-members.html +++ b/doc/api/classasync__mqtt_1_1basic__endpoint-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1basic__endpoint.html b/doc/api/classasync__mqtt_1_1basic__endpoint.html index 77f74e099..881278878 100644 --- a/doc/api/classasync__mqtt_1_1basic__endpoint.html +++ b/doc/api/classasync__mqtt_1_1basic__endpoint.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1basic__packet__variant-members.html b/doc/api/classasync__mqtt_1_1basic__packet__variant-members.html index a2b867029..5e2471280 100644 --- a/doc/api/classasync__mqtt_1_1basic__packet__variant-members.html +++ b/doc/api/classasync__mqtt_1_1basic__packet__variant-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1basic__packet__variant.html b/doc/api/classasync__mqtt_1_1basic__packet__variant.html index 3ceef85fc..c31cc539d 100644 --- a/doc/api/classasync__mqtt_1_1basic__packet__variant.html +++ b/doc/api/classasync__mqtt_1_1basic__packet__variant.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1basic__store__packet__variant-members.html b/doc/api/classasync__mqtt_1_1basic__store__packet__variant-members.html index 8e863c872..f2d9389b4 100644 --- a/doc/api/classasync__mqtt_1_1basic__store__packet__variant-members.html +++ b/doc/api/classasync__mqtt_1_1basic__store__packet__variant-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1basic__store__packet__variant.html b/doc/api/classasync__mqtt_1_1basic__store__packet__variant.html index 16eff7071..fbe1ee177 100644 --- a/doc/api/classasync__mqtt_1_1basic__store__packet__variant.html +++ b/doc/api/classasync__mqtt_1_1basic__store__packet__variant.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1buffer-members.html b/doc/api/classasync__mqtt_1_1buffer-members.html index 6dcbd6af4..d98ff1612 100644 --- a/doc/api/classasync__mqtt_1_1buffer-members.html +++ b/doc/api/classasync__mqtt_1_1buffer-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1buffer.html b/doc/api/classasync__mqtt_1_1buffer.html index 337bd84ea..894d8c3ab 100644 --- a/doc/api/classasync__mqtt_1_1buffer.html +++ b/doc/api/classasync__mqtt_1_1buffer.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1client-members.html b/doc/api/classasync__mqtt_1_1client-members.html index 3707032c2..4c4599bda 100644 --- a/doc/api/classasync__mqtt_1_1client-members.html +++ b/doc/api/classasync__mqtt_1_1client-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1client.html b/doc/api/classasync__mqtt_1_1client.html index 9c961ad28..0398b7cf8 100644 --- a/doc/api/classasync__mqtt_1_1client.html +++ b/doc/api/classasync__mqtt_1_1client.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1assigned__client__identifier-members.html b/doc/api/classasync__mqtt_1_1property_1_1assigned__client__identifier-members.html index 73eb067a9..69c627bed 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1assigned__client__identifier-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1assigned__client__identifier-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1assigned__client__identifier.html b/doc/api/classasync__mqtt_1_1property_1_1assigned__client__identifier.html index bd2695c0b..11f611dc2 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1assigned__client__identifier.html +++ b/doc/api/classasync__mqtt_1_1property_1_1assigned__client__identifier.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1authentication__data-members.html b/doc/api/classasync__mqtt_1_1property_1_1authentication__data-members.html index 39154fc05..f5b23bd18 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1authentication__data-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1authentication__data-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1authentication__data.html b/doc/api/classasync__mqtt_1_1property_1_1authentication__data.html index 8febb8c1e..6535cd42b 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1authentication__data.html +++ b/doc/api/classasync__mqtt_1_1property_1_1authentication__data.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1authentication__method-members.html b/doc/api/classasync__mqtt_1_1property_1_1authentication__method-members.html index c0e781832..9ae1d453f 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1authentication__method-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1authentication__method-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1authentication__method.html b/doc/api/classasync__mqtt_1_1property_1_1authentication__method.html index 55d8cc3a3..c8c54efb5 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1authentication__method.html +++ b/doc/api/classasync__mqtt_1_1property_1_1authentication__method.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1content__type-members.html b/doc/api/classasync__mqtt_1_1property_1_1content__type-members.html index 5c7b7a9a4..5bf36ba8e 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1content__type-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1content__type-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1content__type.html b/doc/api/classasync__mqtt_1_1property_1_1content__type.html index acf464015..11375bf4b 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1content__type.html +++ b/doc/api/classasync__mqtt_1_1property_1_1content__type.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1correlation__data-members.html b/doc/api/classasync__mqtt_1_1property_1_1correlation__data-members.html index 01f546a42..c32ce8e87 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1correlation__data-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1correlation__data-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1correlation__data.html b/doc/api/classasync__mqtt_1_1property_1_1correlation__data.html index 4201bd6e2..ec4bfc6e4 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1correlation__data.html +++ b/doc/api/classasync__mqtt_1_1property_1_1correlation__data.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1maximum__packet__size-members.html b/doc/api/classasync__mqtt_1_1property_1_1maximum__packet__size-members.html index 88fd8ee8a..93abe4058 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1maximum__packet__size-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1maximum__packet__size-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1maximum__packet__size.html b/doc/api/classasync__mqtt_1_1property_1_1maximum__packet__size.html index 14440e062..e1ce2ec39 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1maximum__packet__size.html +++ b/doc/api/classasync__mqtt_1_1property_1_1maximum__packet__size.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1maximum__qos-members.html b/doc/api/classasync__mqtt_1_1property_1_1maximum__qos-members.html index e5e624099..6e1457a14 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1maximum__qos-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1maximum__qos-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1maximum__qos.html b/doc/api/classasync__mqtt_1_1property_1_1maximum__qos.html index b00f6460e..8bcaf898d 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1maximum__qos.html +++ b/doc/api/classasync__mqtt_1_1property_1_1maximum__qos.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1message__expiry__interval-members.html b/doc/api/classasync__mqtt_1_1property_1_1message__expiry__interval-members.html index 0b8d57a0c..f25ae6b98 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1message__expiry__interval-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1message__expiry__interval-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1message__expiry__interval.html b/doc/api/classasync__mqtt_1_1property_1_1message__expiry__interval.html index 66c436f04..a27caa4ad 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1message__expiry__interval.html +++ b/doc/api/classasync__mqtt_1_1property_1_1message__expiry__interval.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1payload__format__indicator-members.html b/doc/api/classasync__mqtt_1_1property_1_1payload__format__indicator-members.html index d546008b8..a3cef2c9f 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1payload__format__indicator-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1payload__format__indicator-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1payload__format__indicator.html b/doc/api/classasync__mqtt_1_1property_1_1payload__format__indicator.html index 7ac5de472..56f05d3c2 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1payload__format__indicator.html +++ b/doc/api/classasync__mqtt_1_1property_1_1payload__format__indicator.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1reason__string-members.html b/doc/api/classasync__mqtt_1_1property_1_1reason__string-members.html index 274323e6e..9e8d2e904 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1reason__string-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1reason__string-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1reason__string.html b/doc/api/classasync__mqtt_1_1property_1_1reason__string.html index ec0aa822a..623c18450 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1reason__string.html +++ b/doc/api/classasync__mqtt_1_1property_1_1reason__string.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1receive__maximum-members.html b/doc/api/classasync__mqtt_1_1property_1_1receive__maximum-members.html index daa3ed81c..0ca9091a1 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1receive__maximum-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1receive__maximum-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1receive__maximum.html b/doc/api/classasync__mqtt_1_1property_1_1receive__maximum.html index 845a24cba..8cdd621a0 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1receive__maximum.html +++ b/doc/api/classasync__mqtt_1_1property_1_1receive__maximum.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1request__problem__information-members.html b/doc/api/classasync__mqtt_1_1property_1_1request__problem__information-members.html index fba6b0b79..525f05e82 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1request__problem__information-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1request__problem__information-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1request__problem__information.html b/doc/api/classasync__mqtt_1_1property_1_1request__problem__information.html index 323fa5642..b31ac9804 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1request__problem__information.html +++ b/doc/api/classasync__mqtt_1_1property_1_1request__problem__information.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1request__response__information-members.html b/doc/api/classasync__mqtt_1_1property_1_1request__response__information-members.html index c86f88ba3..b04ae9696 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1request__response__information-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1request__response__information-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1request__response__information.html b/doc/api/classasync__mqtt_1_1property_1_1request__response__information.html index 0c92be08c..68625be3d 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1request__response__information.html +++ b/doc/api/classasync__mqtt_1_1property_1_1request__response__information.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1response__information-members.html b/doc/api/classasync__mqtt_1_1property_1_1response__information-members.html index bb74ed108..b29f8ddc7 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1response__information-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1response__information-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1response__information.html b/doc/api/classasync__mqtt_1_1property_1_1response__information.html index d8bfe8767..0a647e024 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1response__information.html +++ b/doc/api/classasync__mqtt_1_1property_1_1response__information.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1response__topic-members.html b/doc/api/classasync__mqtt_1_1property_1_1response__topic-members.html index 7b0b42663..a90c07450 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1response__topic-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1response__topic-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1response__topic.html b/doc/api/classasync__mqtt_1_1property_1_1response__topic.html index daab1fa73..12c4f53e6 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1response__topic.html +++ b/doc/api/classasync__mqtt_1_1property_1_1response__topic.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1retain__available-members.html b/doc/api/classasync__mqtt_1_1property_1_1retain__available-members.html index 85a133094..1401bdb73 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1retain__available-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1retain__available-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1retain__available.html b/doc/api/classasync__mqtt_1_1property_1_1retain__available.html index 7400438ed..cd1fd5554 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1retain__available.html +++ b/doc/api/classasync__mqtt_1_1property_1_1retain__available.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1server__keep__alive-members.html b/doc/api/classasync__mqtt_1_1property_1_1server__keep__alive-members.html index f7be4b72f..e1d73fb15 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1server__keep__alive-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1server__keep__alive-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1server__keep__alive.html b/doc/api/classasync__mqtt_1_1property_1_1server__keep__alive.html index c9370bd23..9e8aca2a9 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1server__keep__alive.html +++ b/doc/api/classasync__mqtt_1_1property_1_1server__keep__alive.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1server__reference-members.html b/doc/api/classasync__mqtt_1_1property_1_1server__reference-members.html index 12a5fd3e9..4546b6b32 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1server__reference-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1server__reference-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1server__reference.html b/doc/api/classasync__mqtt_1_1property_1_1server__reference.html index b4b3eb1d1..5e7a16502 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1server__reference.html +++ b/doc/api/classasync__mqtt_1_1property_1_1server__reference.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1session__expiry__interval-members.html b/doc/api/classasync__mqtt_1_1property_1_1session__expiry__interval-members.html index 948f0e6e1..3f9163aea 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1session__expiry__interval-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1session__expiry__interval-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1session__expiry__interval.html b/doc/api/classasync__mqtt_1_1property_1_1session__expiry__interval.html index 88ffbdf03..acbf317b1 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1session__expiry__interval.html +++ b/doc/api/classasync__mqtt_1_1property_1_1session__expiry__interval.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1shared__subscription__available-members.html b/doc/api/classasync__mqtt_1_1property_1_1shared__subscription__available-members.html index d9ecbded0..cc77f20d6 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1shared__subscription__available-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1shared__subscription__available-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1shared__subscription__available.html b/doc/api/classasync__mqtt_1_1property_1_1shared__subscription__available.html index 55768841c..67bc623a4 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1shared__subscription__available.html +++ b/doc/api/classasync__mqtt_1_1property_1_1shared__subscription__available.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier-members.html b/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier-members.html index ca6a8de01..b7708903a 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier.html b/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier.html index 91f99b6c8..72c4f0c93 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier.html +++ b/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier__available-members.html b/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier__available-members.html index 0fad5feb4..9535f6bc7 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier__available-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier__available-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier__available.html b/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier__available.html index 680984c92..e91d8f5dc 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier__available.html +++ b/doc/api/classasync__mqtt_1_1property_1_1subscription__identifier__available.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1topic__alias-members.html b/doc/api/classasync__mqtt_1_1property_1_1topic__alias-members.html index 29129293c..6fbcfe5fb 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1topic__alias-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1topic__alias-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1topic__alias.html b/doc/api/classasync__mqtt_1_1property_1_1topic__alias.html index 026798ea5..41cbbd98e 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1topic__alias.html +++ b/doc/api/classasync__mqtt_1_1property_1_1topic__alias.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1topic__alias__maximum-members.html b/doc/api/classasync__mqtt_1_1property_1_1topic__alias__maximum-members.html index 012f23cb8..4a002cc89 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1topic__alias__maximum-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1topic__alias__maximum-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1topic__alias__maximum.html b/doc/api/classasync__mqtt_1_1property_1_1topic__alias__maximum.html index 50aba406d..120377d7a 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1topic__alias__maximum.html +++ b/doc/api/classasync__mqtt_1_1property_1_1topic__alias__maximum.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1user__property-members.html b/doc/api/classasync__mqtt_1_1property_1_1user__property-members.html index 03c976498..37b14ff69 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1user__property-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1user__property-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1user__property.html b/doc/api/classasync__mqtt_1_1property_1_1user__property.html index 1270cc3d4..8b1ff177e 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1user__property.html +++ b/doc/api/classasync__mqtt_1_1property_1_1user__property.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1wildcard__subscription__available-members.html b/doc/api/classasync__mqtt_1_1property_1_1wildcard__subscription__available-members.html index f70c067bd..0e9f39fb7 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1wildcard__subscription__available-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1wildcard__subscription__available-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1wildcard__subscription__available.html b/doc/api/classasync__mqtt_1_1property_1_1wildcard__subscription__available.html index 4a8516e4a..59e688213 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1wildcard__subscription__available.html +++ b/doc/api/classasync__mqtt_1_1property_1_1wildcard__subscription__available.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1will__delay__interval-members.html b/doc/api/classasync__mqtt_1_1property_1_1will__delay__interval-members.html index a1e8ba655..8b2079808 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1will__delay__interval-members.html +++ b/doc/api/classasync__mqtt_1_1property_1_1will__delay__interval-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property_1_1will__delay__interval.html b/doc/api/classasync__mqtt_1_1property_1_1will__delay__interval.html index cccbf7189..bc7107ce8 100644 --- a/doc/api/classasync__mqtt_1_1property_1_1will__delay__interval.html +++ b/doc/api/classasync__mqtt_1_1property_1_1will__delay__interval.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property__variant-members.html b/doc/api/classasync__mqtt_1_1property__variant-members.html index 6de7302e2..d33aab515 100644 --- a/doc/api/classasync__mqtt_1_1property__variant-members.html +++ b/doc/api/classasync__mqtt_1_1property__variant-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1property__variant.html b/doc/api/classasync__mqtt_1_1property__variant.html index 2563f83c2..5b239fe2d 100644 --- a/doc/api/classasync__mqtt_1_1property__variant.html +++ b/doc/api/classasync__mqtt_1_1property__variant.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1topic__sharename-members.html b/doc/api/classasync__mqtt_1_1topic__sharename-members.html index 40d7c8b47..a5bf06314 100644 --- a/doc/api/classasync__mqtt_1_1topic__sharename-members.html +++ b/doc/api/classasync__mqtt_1_1topic__sharename-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1topic__sharename.html b/doc/api/classasync__mqtt_1_1topic__sharename.html index 55760b6ba..33a74eacb 100644 --- a/doc/api/classasync__mqtt_1_1topic__sharename.html +++ b/doc/api/classasync__mqtt_1_1topic__sharename.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1topic__subopts-members.html b/doc/api/classasync__mqtt_1_1topic__subopts-members.html index 2cd35755d..b8526b120 100644 --- a/doc/api/classasync__mqtt_1_1topic__subopts-members.html +++ b/doc/api/classasync__mqtt_1_1topic__subopts-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1topic__subopts.html b/doc/api/classasync__mqtt_1_1topic__subopts.html index f9620c4da..3c1e10de0 100644 --- a/doc/api/classasync__mqtt_1_1topic__subopts.html +++ b/doc/api/classasync__mqtt_1_1topic__subopts.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet-members.html index 49150aac0..3222410df 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet.html index fbb3c262a..32e1da611 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet-members.html index 4466efbcb..5621669dc 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet.html index 52f976b99..006a8e5e5 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet-members.html index a9df709c2..1f6203025 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet.html index 067309182..fec9b0130 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet-members.html index 9512a4b69..ceddf1a0d 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet.html index 4981266c9..7174de974 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet-members.html index c3dfb2690..a0f42992a 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet.html index 3a466ba0f..0f1da0851 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet-members.html index 975d5e611..97411474d 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet.html index a68fab553..b8867a5ed 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet-members.html index e96d7135c..a96d20a9d 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet.html index bf02a757b..64b2c3a65 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet-members.html index ac63899a2..fc216502f 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet.html index 0861f279a..790cd7a88 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet-members.html index 54ba88824..59314f9bb 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet.html index fc7c50fdb..7805b4531 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1connack__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1connack__packet-members.html index 34f3ffe43..3f549e2d8 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1connack__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1connack__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1connack__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1connack__packet.html index 8888cae03..03ec9c474 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1connack__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1connack__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1connect__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1connect__packet-members.html index c99231a7d..c21599cb0 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1connect__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1connect__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1connect__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1connect__packet.html index 0bb3a4a7c..9e51fd0a7 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1connect__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1connect__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1disconnect__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1disconnect__packet-members.html index 0ff682ac4..c89e1b3c2 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1disconnect__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1disconnect__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1disconnect__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1disconnect__packet.html index a568d2a21..158474850 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1disconnect__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1disconnect__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingreq__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingreq__packet-members.html index eb22e577a..16f049146 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingreq__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingreq__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingreq__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingreq__packet.html index 755b9ea5e..a07f90e3b 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingreq__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingreq__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingresp__packet-members.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingresp__packet-members.html index 3cbcab27c..8587d6350 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingresp__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingresp__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingresp__packet.html b/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingresp__packet.html index 7ad38ecb0..e9ac0071d 100644 --- a/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingresp__packet.html +++ b/doc/api/classasync__mqtt_1_1v3__1__1_1_1pingresp__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1auth__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1auth__packet-members.html index 992c82967..c16d8ddbd 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1auth__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1auth__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1auth__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1auth__packet.html index 83478556f..8c0dc6b2f 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1auth__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1auth__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__puback__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__puback__packet-members.html index c1f5e8a01..d92a79c75 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__puback__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__puback__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__puback__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__puback__packet.html index cfa6cc254..4f176b0d8 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__puback__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__puback__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubcomp__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubcomp__packet-members.html index ac79c52a8..8e7316c5c 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubcomp__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubcomp__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubcomp__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubcomp__packet.html index a85d5df14..613ff5022 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubcomp__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubcomp__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__publish__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__publish__packet-members.html index 99e369bac..2a99af294 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__publish__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__publish__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__publish__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__publish__packet.html index c5c65a929..dba96e31b 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__publish__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__publish__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrec__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrec__packet-members.html index 33044ca53..f365dfc29 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrec__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrec__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrec__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrec__packet.html index bbf10dcd0..9f0dd10de 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrec__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrec__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrel__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrel__packet-members.html index 10395032e..950f84ecf 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrel__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrel__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrel__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrel__packet.html index 5a89fa340..4b63f8719 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrel__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__pubrel__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__suback__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__suback__packet-members.html index 9a1c36dbb..edb457633 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__suback__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__suback__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__suback__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__suback__packet.html index 534a3bdc3..2519da613 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__suback__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__suback__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__subscribe__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__subscribe__packet-members.html index 8aa8598b8..73b6e3c54 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__subscribe__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__subscribe__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__subscribe__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__subscribe__packet.html index 1415dccc4..f0d0b1ba8 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__subscribe__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__subscribe__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__unsuback__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__unsuback__packet-members.html index 9c9dbf821..4312ac983 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__unsuback__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__unsuback__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__unsuback__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__unsuback__packet.html index 5527e23f7..fc9bcce87 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__unsuback__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__unsuback__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet-members.html index 911710133..770e8ede4 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet.html index 50f134a92..68bf3b5e1 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1connack__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1connack__packet-members.html index 896768c54..84fcade5f 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1connack__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1connack__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1connack__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1connack__packet.html index eff5b1b01..915c657a3 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1connack__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1connack__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1connect__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1connect__packet-members.html index fd7d32665..b130c060b 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1connect__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1connect__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1connect__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1connect__packet.html index 28b8a39cc..51a05363b 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1connect__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1connect__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1disconnect__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1disconnect__packet-members.html index 8c821f1cf..f281126f5 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1disconnect__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1disconnect__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1disconnect__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1disconnect__packet.html index 074ae742c..ba28ebf8e 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1disconnect__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1disconnect__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1pingreq__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1pingreq__packet-members.html index 2b2c3e660..99a2f86c6 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1pingreq__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1pingreq__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1pingreq__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1pingreq__packet.html index 85ec54c2f..7fc4cbbc0 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1pingreq__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1pingreq__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1pingresp__packet-members.html b/doc/api/classasync__mqtt_1_1v5_1_1pingresp__packet-members.html index 8c76c5e1f..171a6f5d5 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1pingresp__packet-members.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1pingresp__packet-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1v5_1_1pingresp__packet.html b/doc/api/classasync__mqtt_1_1v5_1_1pingresp__packet.html index e31e69d28..d9e9bff3f 100644 --- a/doc/api/classasync__mqtt_1_1v5_1_1pingresp__packet.html +++ b/doc/api/classasync__mqtt_1_1v5_1_1pingresp__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1will-members.html b/doc/api/classasync__mqtt_1_1will-members.html index aa83ec768..a22b5e2af 100644 --- a/doc/api/classasync__mqtt_1_1will-members.html +++ b/doc/api/classasync__mqtt_1_1will-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classasync__mqtt_1_1will.html b/doc/api/classasync__mqtt_1_1will.html index 918aefcb7..36791d7d4 100644 --- a/doc/api/classasync__mqtt_1_1will.html +++ b/doc/api/classasync__mqtt_1_1will.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classes.html b/doc/api/classes.html index 038c826e6..e3acb1e5a 100644 --- a/doc/api/classes.html +++ b/doc/api/classes.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classstd_1_1hash_3_01async__mqtt_1_1buffer_01_4-members.html b/doc/api/classstd_1_1hash_3_01async__mqtt_1_1buffer_01_4-members.html index 79267f1d7..8e53c739e 100644 --- a/doc/api/classstd_1_1hash_3_01async__mqtt_1_1buffer_01_4-members.html +++ b/doc/api/classstd_1_1hash_3_01async__mqtt_1_1buffer_01_4-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/classstd_1_1hash_3_01async__mqtt_1_1buffer_01_4.html b/doc/api/classstd_1_1hash_3_01async__mqtt_1_1buffer_01_4.html index 8c329c6b6..9dcda25d3 100644 --- a/doc/api/classstd_1_1hash_3_01async__mqtt_1_1buffer_01_4.html +++ b/doc/api/classstd_1_1hash_3_01async__mqtt_1_1buffer_01_4.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/client_8hpp_source.html b/doc/api/client_8hpp_source.html index 37056acfa..098e85a84 100644 --- a/doc/api/client_8hpp_source.html +++ b/doc/api/client_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/client__fwd_8hpp_source.html b/doc/api/client__fwd_8hpp_source.html index ccda84a39..21b3c1452 100644 --- a/doc/api/client__fwd_8hpp_source.html +++ b/doc/api/client__fwd_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/control__packet__type_8hpp_source.html b/doc/api/control__packet__type_8hpp_source.html index 4f582c41e..60c0ad6d8 100644 --- a/doc/api/control__packet__type_8hpp_source.html +++ b/doc/api/control__packet__type_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/customized__basic__stream_8hpp_source.html b/doc/api/customized__basic__stream_8hpp_source.html index ea85356f9..97aab771a 100644 --- a/doc/api/customized__basic__stream_8hpp_source.html +++ b/doc/api/customized__basic__stream_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/customized__ssl__stream_8hpp.html b/doc/api/customized__ssl__stream_8hpp.html index 6df52f63e..782bb036a 100644 --- a/doc/api/customized__ssl__stream_8hpp.html +++ b/doc/api/customized__ssl__stream_8hpp.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/customized__ssl__stream_8hpp_source.html b/doc/api/customized__ssl__stream_8hpp_source.html index c5b2bbf43..aaeeefad3 100644 --- a/doc/api/customized__ssl__stream_8hpp_source.html +++ b/doc/api/customized__ssl__stream_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/customized__websocket__stream_8hpp.html b/doc/api/customized__websocket__stream_8hpp.html index 85fa3d663..f4b2472ce 100644 --- a/doc/api/customized__websocket__stream_8hpp.html +++ b/doc/api/customized__websocket__stream_8hpp.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/customized__websocket__stream_8hpp_source.html b/doc/api/customized__websocket__stream_8hpp_source.html index 894c29513..200600e51 100644 --- a/doc/api/customized__websocket__stream_8hpp_source.html +++ b/doc/api/customized__websocket__stream_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/dir_cce41e6148f04805f4e76e6a36ba88d6.html b/doc/api/dir_cce41e6148f04805f4e76e6a36ba88d6.html index 0bb76a3c1..67208f3fa 100644 --- a/doc/api/dir_cce41e6148f04805f4e76e6a36ba88d6.html +++ b/doc/api/dir_cce41e6148f04805f4e76e6a36ba88d6.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/dir_ce1a31e6a52137e313c4ed05ef460346.html b/doc/api/dir_ce1a31e6a52137e313c4ed05ef460346.html index 2fbdc5754..65deab9f1 100644 --- a/doc/api/dir_ce1a31e6a52137e313c4ed05ef460346.html +++ b/doc/api/dir_ce1a31e6a52137e313c4ed05ef460346.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/api/dir_d44c64559bbebec7f509842c48db8b23.html index b9b0323d8..3a0aa1a2c 100644 --- a/doc/api/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/doc/api/dir_d44c64559bbebec7f509842c48db8b23.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/dir_df0bffcb61356486763cc61cf65485e2.html b/doc/api/dir_df0bffcb61356486763cc61cf65485e2.html index ff6d6dbe8..3e3f1f0a8 100644 --- a/doc/api/dir_df0bffcb61356486763cc61cf65485e2.html +++ b/doc/api/dir_df0bffcb61356486763cc61cf65485e2.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/dir_f8efeb8e1feb6bbd3b8b0bf040091d61.html b/doc/api/dir_f8efeb8e1feb6bbd3b8b0bf040091d61.html index 8df005a4d..2c9376f74 100644 --- a/doc/api/dir_f8efeb8e1feb6bbd3b8b0bf040091d61.html +++ b/doc/api/dir_f8efeb8e1feb6bbd3b8b0bf040091d61.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/doxygen_crawl.html b/doc/api/doxygen_crawl.html index 3a6f7ee14..61a49aa22 100644 --- a/doc/api/doxygen_crawl.html +++ b/doc/api/doxygen_crawl.html @@ -1335,9 +1335,9 @@ + - - + diff --git a/doc/api/endian__convert_8hpp_source.html b/doc/api/endian__convert_8hpp_source.html index d35574065..b462a1c4e 100644 --- a/doc/api/endian__convert_8hpp_source.html +++ b/doc/api/endian__convert_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/endpoint_8hpp_source.html b/doc/api/endpoint_8hpp_source.html index 17a152047..cf913e1ae 100644 --- a/doc/api/endpoint_8hpp_source.html +++ b/doc/api/endpoint_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/endpoint__fwd_8hpp_source.html b/doc/api/endpoint__fwd_8hpp_source.html index cbbeae35c..a7b2c69cc 100644 --- a/doc/api/endpoint__fwd_8hpp_source.html +++ b/doc/api/endpoint__fwd_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/error_8hpp_source.html b/doc/api/error_8hpp_source.html index 3466140a3..5e9677306 100644 --- a/doc/api/error_8hpp_source.html +++ b/doc/api/error_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/files.html b/doc/api/files.html index 5725055ce..e474707f8 100644 --- a/doc/api/files.html +++ b/doc/api/files.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions.html b/doc/api/functions.html index 4b8270d37..74623de90 100644 --- a/doc/api/functions.html +++ b/doc/api/functions.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_b.html b/doc/api/functions_b.html index 2049e87d2..790d90f50 100644 --- a/doc/api/functions_b.html +++ b/doc/api/functions_b.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_c.html b/doc/api/functions_c.html index 9399b4f3f..ba968cec6 100644 --- a/doc/api/functions_c.html +++ b/doc/api/functions_c.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_d.html b/doc/api/functions_d.html index e2cedfab2..d860a28d9 100644 --- a/doc/api/functions_d.html +++ b/doc/api/functions_d.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_e.html b/doc/api/functions_e.html index 5b776d4c0..53a87c8f8 100644 --- a/doc/api/functions_e.html +++ b/doc/api/functions_e.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_f.html b/doc/api/functions_f.html index 5becbb0ea..c74658c5a 100644 --- a/doc/api/functions_f.html +++ b/doc/api/functions_f.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func.html b/doc/api/functions_func.html index 30bbf411d..c876d6be5 100644 --- a/doc/api/functions_func.html +++ b/doc/api/functions_func.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_b.html b/doc/api/functions_func_b.html index a400b716a..9b03138a8 100644 --- a/doc/api/functions_func_b.html +++ b/doc/api/functions_func_b.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_c.html b/doc/api/functions_func_c.html index 73f03e9e7..6b8066c3d 100644 --- a/doc/api/functions_func_c.html +++ b/doc/api/functions_func_c.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_d.html b/doc/api/functions_func_d.html index d509f9632..dd182e1a0 100644 --- a/doc/api/functions_func_d.html +++ b/doc/api/functions_func_d.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_e.html b/doc/api/functions_func_e.html index 9247ee7a8..2294cb6eb 100644 --- a/doc/api/functions_func_e.html +++ b/doc/api/functions_func_e.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_f.html b/doc/api/functions_func_f.html index c6e6658d5..ac3ebaf7d 100644 --- a/doc/api/functions_func_f.html +++ b/doc/api/functions_func_f.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_g.html b/doc/api/functions_func_g.html index 061d0b58c..1489897bd 100644 --- a/doc/api/functions_func_g.html +++ b/doc/api/functions_func_g.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_h.html b/doc/api/functions_func_h.html index 46815763c..732169379 100644 --- a/doc/api/functions_func_h.html +++ b/doc/api/functions_func_h.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_i.html b/doc/api/functions_func_i.html index cb517f9d7..c8fbbfdde 100644 --- a/doc/api/functions_func_i.html +++ b/doc/api/functions_func_i.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_k.html b/doc/api/functions_func_k.html index 231b40c37..91db18ff8 100644 --- a/doc/api/functions_func_k.html +++ b/doc/api/functions_func_k.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_l.html b/doc/api/functions_func_l.html index 869a93187..65a8f049a 100644 --- a/doc/api/functions_func_l.html +++ b/doc/api/functions_func_l.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_m.html b/doc/api/functions_func_m.html index 5e44751a9..886f48ff1 100644 --- a/doc/api/functions_func_m.html +++ b/doc/api/functions_func_m.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_n.html b/doc/api/functions_func_n.html index d36369874..daff49e0a 100644 --- a/doc/api/functions_func_n.html +++ b/doc/api/functions_func_n.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_o.html b/doc/api/functions_func_o.html index 60a2bdabf..20f274095 100644 --- a/doc/api/functions_func_o.html +++ b/doc/api/functions_func_o.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_p.html b/doc/api/functions_func_p.html index 97ec61c8a..da53c1350 100644 --- a/doc/api/functions_func_p.html +++ b/doc/api/functions_func_p.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_r.html b/doc/api/functions_func_r.html index 07e4f2ec4..1afd09ae0 100644 --- a/doc/api/functions_func_r.html +++ b/doc/api/functions_func_r.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_s.html b/doc/api/functions_func_s.html index 817e50ca4..bbbc44f5c 100644 --- a/doc/api/functions_func_s.html +++ b/doc/api/functions_func_s.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_t.html b/doc/api/functions_func_t.html index 8afa0e361..6214af7dd 100644 --- a/doc/api/functions_func_t.html +++ b/doc/api/functions_func_t.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_u.html b/doc/api/functions_func_u.html index c2e65a0a8..19a512712 100644 --- a/doc/api/functions_func_u.html +++ b/doc/api/functions_func_u.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_v.html b/doc/api/functions_func_v.html index 61c5e71b5..45ff62491 100644 --- a/doc/api/functions_func_v.html +++ b/doc/api/functions_func_v.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_w.html b/doc/api/functions_func_w.html index 5d7f09e1a..f2164837e 100644 --- a/doc/api/functions_func_w.html +++ b/doc/api/functions_func_w.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_func_~.html b/doc/api/functions_func_~.html index 11f48dbdf..2e661ef40 100644 --- a/doc/api/functions_func_~.html +++ b/doc/api/functions_func_~.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_g.html b/doc/api/functions_g.html index 4885196f6..0a101340d 100644 --- a/doc/api/functions_g.html +++ b/doc/api/functions_g.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_h.html b/doc/api/functions_h.html index 1663c5185..5c3b65059 100644 --- a/doc/api/functions_h.html +++ b/doc/api/functions_h.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_i.html b/doc/api/functions_i.html index e8728ee3c..968b58866 100644 --- a/doc/api/functions_i.html +++ b/doc/api/functions_i.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_k.html b/doc/api/functions_k.html index 116ed8860..b0c61b302 100644 --- a/doc/api/functions_k.html +++ b/doc/api/functions_k.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_l.html b/doc/api/functions_l.html index b6f364fdc..088569938 100644 --- a/doc/api/functions_l.html +++ b/doc/api/functions_l.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_m.html b/doc/api/functions_m.html index d9f5434ac..7f2bb2a8d 100644 --- a/doc/api/functions_m.html +++ b/doc/api/functions_m.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_n.html b/doc/api/functions_n.html index 60a2bf5f3..7a1d428b3 100644 --- a/doc/api/functions_n.html +++ b/doc/api/functions_n.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_o.html b/doc/api/functions_o.html index a93ece622..4d18c2b44 100644 --- a/doc/api/functions_o.html +++ b/doc/api/functions_o.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_p.html b/doc/api/functions_p.html index 3eacfc04e..386cb2b41 100644 --- a/doc/api/functions_p.html +++ b/doc/api/functions_p.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_r.html b/doc/api/functions_r.html index 8c9dba5c1..0d91430ca 100644 --- a/doc/api/functions_r.html +++ b/doc/api/functions_r.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_rela.html b/doc/api/functions_rela.html index c6d8ae66c..3a6e9a874 100644 --- a/doc/api/functions_rela.html +++ b/doc/api/functions_rela.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_s.html b/doc/api/functions_s.html index 54de50d69..0b3ff91ba 100644 --- a/doc/api/functions_s.html +++ b/doc/api/functions_s.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_t.html b/doc/api/functions_t.html index 861cb1c5f..106810dcd 100644 --- a/doc/api/functions_t.html +++ b/doc/api/functions_t.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_type.html b/doc/api/functions_type.html index ac11fe70b..df255dfca 100644 --- a/doc/api/functions_type.html +++ b/doc/api/functions_type.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_u.html b/doc/api/functions_u.html index 3bb88be7e..d04d32f3c 100644 --- a/doc/api/functions_u.html +++ b/doc/api/functions_u.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_v.html b/doc/api/functions_v.html index 655f3fb9c..60239eb91 100644 --- a/doc/api/functions_v.html +++ b/doc/api/functions_v.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_vars.html b/doc/api/functions_vars.html index f143eb6a6..1d6b50c16 100644 --- a/doc/api/functions_vars.html +++ b/doc/api/functions_vars.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_w.html b/doc/api/functions_w.html index 9fe3b455d..722ca4227 100644 --- a/doc/api/functions_w.html +++ b/doc/api/functions_w.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/functions_~.html b/doc/api/functions_~.html index 06ea24f5a..8c6c66127 100644 --- a/doc/api/functions_~.html +++ b/doc/api/functions_~.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/graph_legend.html b/doc/api/graph_legend.html index 8827829bd..0665d426d 100644 --- a/doc/api/graph_legend.html +++ b/doc/api/graph_legend.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__auth__reason__code.html b/doc/api/group__auth__reason__code.html index 2aba618d0..cd176e1dd 100644 --- a/doc/api/group__auth__reason__code.html +++ b/doc/api/group__auth__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__auth__v5.html b/doc/api/group__auth__v5.html index fffa9e7a3..2dc30f719 100644 --- a/doc/api/group__auth__v5.html +++ b/doc/api/group__auth__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__buffer.html b/doc/api/group__buffer.html index 6e4f2e163..c63cac055 100644 --- a/doc/api/group__buffer.html +++ b/doc/api/group__buffer.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__client.html b/doc/api/group__client.html index 7befa7941..9c11f842b 100644 --- a/doc/api/group__client.html +++ b/doc/api/group__client.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__connack__v3__1__1.html b/doc/api/group__connack__v3__1__1.html index cb668741b..a9448d942 100644 --- a/doc/api/group__connack__v3__1__1.html +++ b/doc/api/group__connack__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__connack__v5.html b/doc/api/group__connack__v5.html index f913c3486..a33106b43 100644 --- a/doc/api/group__connack__v5.html +++ b/doc/api/group__connack__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__connect__reason__code.html b/doc/api/group__connect__reason__code.html index c47ed3b13..afc78d54b 100644 --- a/doc/api/group__connect__reason__code.html +++ b/doc/api/group__connect__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__connect__return__code.html b/doc/api/group__connect__return__code.html index d5b1367a2..f7defb659 100644 --- a/doc/api/group__connect__return__code.html +++ b/doc/api/group__connect__return__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__connect__v3__1__1.html b/doc/api/group__connect__v3__1__1.html index b697d7d38..89c0203a3 100644 --- a/doc/api/group__connect__v3__1__1.html +++ b/doc/api/group__connect__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__connect__v5.html b/doc/api/group__connect__v5.html index ca075aed7..cb86aa52b 100644 --- a/doc/api/group__connect__v5.html +++ b/doc/api/group__connect__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__connection.html b/doc/api/group__connection.html index f54d458da..1b0c2f599 100644 --- a/doc/api/group__connection.html +++ b/doc/api/group__connection.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__disconnect__reason__code.html b/doc/api/group__disconnect__reason__code.html index 23f5b8dc7..f09e8a168 100644 --- a/doc/api/group__disconnect__reason__code.html +++ b/doc/api/group__disconnect__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__disconnect__v3__1__1.html b/doc/api/group__disconnect__v3__1__1.html index 22c621abe..aba2e2abb 100644 --- a/doc/api/group__disconnect__v3__1__1.html +++ b/doc/api/group__disconnect__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__disconnect__v5.html b/doc/api/group__disconnect__v5.html index 7c1261962..bcbb016fc 100644 --- a/doc/api/group__disconnect__v5.html +++ b/doc/api/group__disconnect__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__endpoint.html b/doc/api/group__endpoint.html index fe4dc857e..774641a8b 100644 --- a/doc/api/group__endpoint.html +++ b/doc/api/group__endpoint.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__error.html b/doc/api/group__error.html index 95958459a..8196b0ce0 100644 --- a/doc/api/group__error.html +++ b/doc/api/group__error.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__error__reporting.html b/doc/api/group__error__reporting.html index 04ffb967e..3fc593e13 100644 --- a/doc/api/group__error__reporting.html +++ b/doc/api/group__error__reporting.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__log.html b/doc/api/group__log.html index 2cd68f48f..2b4ff7d37 100644 --- a/doc/api/group__log.html +++ b/doc/api/group__log.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
@@ -120,12 +120,12 @@ - - - - - - + + + + + +

Functions

void async_mqtt::setup_log (std::map< std::string, severity_level > threshold)
 Setup logging.
 
void async_mqtt::setup_log (severity_level threshold=severity_level::warning)
 Setup logging.
 
void async_mqtt::setup_log (std::map< std::string, severity_level > threshold, bool colored=true)
 Setup logging.
 
void async_mqtt::setup_log (severity_level threshold=severity_level::warning, bool colored=true)
 Setup logging.
 

Detailed Description

Enumeration Type Documentation

@@ -173,8 +173,8 @@

Function Documentation

- -

◆ setup_log() [1/2]

+ +

◆ setup_log() [1/2]

- -

◆ setup_log() [2/2]

+ +

◆ setup_log() [2/2]

@@ -224,8 +229,12 @@

void async_mqtt::setup_log ( - std::map< std::string, severity_level > threshold) + std::map< std::string, severity_level > threshold, + + + + bool colored = true ) @@ -238,7 +247,8 @@

Parameters
- + +
thresholdSet threshold severity_level by channel If the log severity_level >= threshold then log message outputs.
thresholdSet threshold severity_level by channel If the log severity_level >= threshold then log message outputs.
coloredIf true, log is colored corresponding to the severity
diff --git a/doc/api/group__log.js b/doc/api/group__log.js index dde32bbfa..dbb5e3983 100644 --- a/doc/api/group__log.js +++ b/doc/api/group__log.js @@ -8,6 +8,6 @@ var group__log = [ "async_mqtt::severity_level::error", "group__log.html#gga3abd0c0ebf71c7d01def2a00423d1abfacb5e100e5a9a3e7f6d1fd97512215282", null ], [ "async_mqtt::severity_level::fatal", "group__log.html#gga3abd0c0ebf71c7d01def2a00423d1abfadf6402fd9ecc60f5a2159fdf45711cd4", null ] ] ], - [ "async_mqtt::setup_log", "group__log.html#ga9d3595338fa766b0916c26168023bf33", null ], - [ "async_mqtt::setup_log", "group__log.html#ga61df85c3992a1a67d0342ddecb05ef52", null ] + [ "async_mqtt::setup_log", "group__log.html#gaa9a6cd71475ce3a8c125e55aa85eb9db", null ], + [ "async_mqtt::setup_log", "group__log.html#ga380e70ad37525b716fab2df30eeb5949", null ] ]; \ No newline at end of file diff --git a/doc/api/group__mqtt.html b/doc/api/group__mqtt.html index c650324be..d7ee3deb5 100644 --- a/doc/api/group__mqtt.html +++ b/doc/api/group__mqtt.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__mqtt__error.html b/doc/api/group__mqtt__error.html index d3aba8e96..2a9e3b82e 100644 --- a/doc/api/group__mqtt__error.html +++ b/doc/api/group__mqtt__error.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__packet.html b/doc/api/group__packet.html index 978d9e5c0..193b0041f 100644 --- a/doc/api/group__packet.html +++ b/doc/api/group__packet.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__packet__detail.html b/doc/api/group__packet__detail.html index 4fca37ee4..0da2ed585 100644 --- a/doc/api/group__packet__detail.html +++ b/doc/api/group__packet__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__packet__v3__1__1.html b/doc/api/group__packet__v3__1__1.html index f6f993051..dbe787a30 100644 --- a/doc/api/group__packet__v3__1__1.html +++ b/doc/api/group__packet__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__packet__v5.html b/doc/api/group__packet__v5.html index bcb94249a..e7e2644a0 100644 --- a/doc/api/group__packet__v5.html +++ b/doc/api/group__packet__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__packet__variant.html b/doc/api/group__packet__variant.html index 6dc4ccb07..d0eea5f30 100644 --- a/doc/api/group__packet__variant.html +++ b/doc/api/group__packet__variant.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__packet__variant__detail.html b/doc/api/group__packet__variant__detail.html index 878b10b5b..9a0a1ba53 100644 --- a/doc/api/group__packet__variant__detail.html +++ b/doc/api/group__packet__variant__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pingreq__v3__1__1.html b/doc/api/group__pingreq__v3__1__1.html index c7bcadb49..e2c546db5 100644 --- a/doc/api/group__pingreq__v3__1__1.html +++ b/doc/api/group__pingreq__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pingreq__v5.html b/doc/api/group__pingreq__v5.html index e38ac64d0..1bae9e094 100644 --- a/doc/api/group__pingreq__v5.html +++ b/doc/api/group__pingreq__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pingresp__v3__1__1.html b/doc/api/group__pingresp__v3__1__1.html index ce8727c2f..cfb797352 100644 --- a/doc/api/group__pingresp__v3__1__1.html +++ b/doc/api/group__pingresp__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pingresp__v5.html b/doc/api/group__pingresp__v5.html index 72fb577a9..aa7530548 100644 --- a/doc/api/group__pingresp__v5.html +++ b/doc/api/group__pingresp__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__predefined__customize.html b/doc/api/group__predefined__customize.html index ec7a76725..f21b52ad8 100644 --- a/doc/api/group__predefined__customize.html +++ b/doc/api/group__predefined__customize.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__predefined__layer.html b/doc/api/group__predefined__layer.html index bd688204e..55ef1d78e 100644 --- a/doc/api/group__predefined__layer.html +++ b/doc/api/group__predefined__layer.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__predefined__layer__mqtt.html b/doc/api/group__predefined__layer__mqtt.html index 59c902cdf..98b1ff7c5 100644 --- a/doc/api/group__predefined__layer__mqtt.html +++ b/doc/api/group__predefined__layer__mqtt.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__predefined__layer__mqtts.html b/doc/api/group__predefined__layer__mqtts.html index 002f911fb..90dfdf3fb 100644 --- a/doc/api/group__predefined__layer__mqtts.html +++ b/doc/api/group__predefined__layer__mqtts.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__predefined__layer__ws.html b/doc/api/group__predefined__layer__ws.html index f48932d05..2d1870172 100644 --- a/doc/api/group__predefined__layer__ws.html +++ b/doc/api/group__predefined__layer__ws.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__predefined__layer__wss.html b/doc/api/group__predefined__layer__wss.html index 59c128ea6..3282de1b7 100644 --- a/doc/api/group__predefined__layer__wss.html +++ b/doc/api/group__predefined__layer__wss.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__property.html b/doc/api/group__property.html index 290d26691..cfb6e1656 100644 --- a/doc/api/group__property.html +++ b/doc/api/group__property.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__property__internal.html b/doc/api/group__property__internal.html index f0ceef28e..4fd4543c8 100644 --- a/doc/api/group__property__internal.html +++ b/doc/api/group__property__internal.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__property__variant.html b/doc/api/group__property__variant.html index 89736a396..c18293610 100644 --- a/doc/api/group__property__variant.html +++ b/doc/api/group__property__variant.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__puback__reason__code.html b/doc/api/group__puback__reason__code.html index 7a2360fac..87ce3d5cc 100644 --- a/doc/api/group__puback__reason__code.html +++ b/doc/api/group__puback__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__puback__v3__1__1.html b/doc/api/group__puback__v3__1__1.html index 067af6d74..953885dec 100644 --- a/doc/api/group__puback__v3__1__1.html +++ b/doc/api/group__puback__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__puback__v3__1__1__detail.html b/doc/api/group__puback__v3__1__1__detail.html index 0136ce2c1..d0143c060 100644 --- a/doc/api/group__puback__v3__1__1__detail.html +++ b/doc/api/group__puback__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__puback__v5.html b/doc/api/group__puback__v5.html index 38ff7bba3..7b05dcfd3 100644 --- a/doc/api/group__puback__v5.html +++ b/doc/api/group__puback__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__puback__v5__detail.html b/doc/api/group__puback__v5__detail.html index 486bdd390..8ac851de9 100644 --- a/doc/api/group__puback__v5__detail.html +++ b/doc/api/group__puback__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubcomp__reason__code.html b/doc/api/group__pubcomp__reason__code.html index 70b1cb90d..d78302a23 100644 --- a/doc/api/group__pubcomp__reason__code.html +++ b/doc/api/group__pubcomp__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubcomp__v3__1__1.html b/doc/api/group__pubcomp__v3__1__1.html index 34bd9e1c1..4110e07d2 100644 --- a/doc/api/group__pubcomp__v3__1__1.html +++ b/doc/api/group__pubcomp__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubcomp__v3__1__1__detail.html b/doc/api/group__pubcomp__v3__1__1__detail.html index 508ebbbb4..0b9222655 100644 --- a/doc/api/group__pubcomp__v3__1__1__detail.html +++ b/doc/api/group__pubcomp__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubcomp__v5.html b/doc/api/group__pubcomp__v5.html index 277363f82..42c9da5b4 100644 --- a/doc/api/group__pubcomp__v5.html +++ b/doc/api/group__pubcomp__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubcomp__v5__detail.html b/doc/api/group__pubcomp__v5__detail.html index 6484ae437..f076bc994 100644 --- a/doc/api/group__pubcomp__v5__detail.html +++ b/doc/api/group__pubcomp__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__publish__options.html b/doc/api/group__publish__options.html index b7860e772..18cd4a0f7 100644 --- a/doc/api/group__publish__options.html +++ b/doc/api/group__publish__options.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__publish__v3__1__1.html b/doc/api/group__publish__v3__1__1.html index 44fc48986..073a1d5fb 100644 --- a/doc/api/group__publish__v3__1__1.html +++ b/doc/api/group__publish__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__publish__v3__1__1__detail.html b/doc/api/group__publish__v3__1__1__detail.html index 5ed0234cc..666efa977 100644 --- a/doc/api/group__publish__v3__1__1__detail.html +++ b/doc/api/group__publish__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__publish__v5.html b/doc/api/group__publish__v5.html index d959cc841..8337515eb 100644 --- a/doc/api/group__publish__v5.html +++ b/doc/api/group__publish__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__publish__v5__detail.html b/doc/api/group__publish__v5__detail.html index 4dfaa70ce..b194de502 100644 --- a/doc/api/group__publish__v5__detail.html +++ b/doc/api/group__publish__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrec__reason__code.html b/doc/api/group__pubrec__reason__code.html index 104ead503..f7eeb38ab 100644 --- a/doc/api/group__pubrec__reason__code.html +++ b/doc/api/group__pubrec__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrec__v3__1__1.html b/doc/api/group__pubrec__v3__1__1.html index b6d3c9ccb..80c935921 100644 --- a/doc/api/group__pubrec__v3__1__1.html +++ b/doc/api/group__pubrec__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrec__v3__1__1__detail.html b/doc/api/group__pubrec__v3__1__1__detail.html index b8c62e1b2..52fc23093 100644 --- a/doc/api/group__pubrec__v3__1__1__detail.html +++ b/doc/api/group__pubrec__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrec__v5.html b/doc/api/group__pubrec__v5.html index ade092b3e..ebabd3887 100644 --- a/doc/api/group__pubrec__v5.html +++ b/doc/api/group__pubrec__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrec__v5__detail.html b/doc/api/group__pubrec__v5__detail.html index 12cad1099..8c4bb5a68 100644 --- a/doc/api/group__pubrec__v5__detail.html +++ b/doc/api/group__pubrec__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrel__reason__code.html b/doc/api/group__pubrel__reason__code.html index 165444ca1..15c69df70 100644 --- a/doc/api/group__pubrel__reason__code.html +++ b/doc/api/group__pubrel__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrel__v3__1__1.html b/doc/api/group__pubrel__v3__1__1.html index c013d0220..8c2f06aeb 100644 --- a/doc/api/group__pubrel__v3__1__1.html +++ b/doc/api/group__pubrel__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrel__v3__1__1__detail.html b/doc/api/group__pubrel__v3__1__1__detail.html index 848a6284d..46fa4420d 100644 --- a/doc/api/group__pubrel__v3__1__1__detail.html +++ b/doc/api/group__pubrel__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrel__v5.html b/doc/api/group__pubrel__v5.html index 736053c4a..328cf1ed8 100644 --- a/doc/api/group__pubrel__v5.html +++ b/doc/api/group__pubrel__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__pubrel__v5__detail.html b/doc/api/group__pubrel__v5__detail.html index 2ff76c1df..c513ee9a2 100644 --- a/doc/api/group__pubrel__v5__detail.html +++ b/doc/api/group__pubrel__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__qos.html b/doc/api/group__qos.html index 6a192c7e5..8ad1f6ef3 100644 --- a/doc/api/group__qos.html +++ b/doc/api/group__qos.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__role.html b/doc/api/group__role.html index 444631a11..1ffdc2ee4 100644 --- a/doc/api/group__role.html +++ b/doc/api/group__role.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__store__packet__variant.html b/doc/api/group__store__packet__variant.html index 9358d137e..1fc0bbd21 100644 --- a/doc/api/group__store__packet__variant.html +++ b/doc/api/group__store__packet__variant.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__store__packet__variant__detail.html b/doc/api/group__store__packet__variant__detail.html index 1c935aa00..c1a25a99c 100644 --- a/doc/api/group__store__packet__variant__detail.html +++ b/doc/api/group__store__packet__variant__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__suback__reason__code.html b/doc/api/group__suback__reason__code.html index a6f6a80ec..8d1e8e5b4 100644 --- a/doc/api/group__suback__reason__code.html +++ b/doc/api/group__suback__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__suback__return__code.html b/doc/api/group__suback__return__code.html index 9332d670f..1ba2edee3 100644 --- a/doc/api/group__suback__return__code.html +++ b/doc/api/group__suback__return__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__suback__v3__1__1.html b/doc/api/group__suback__v3__1__1.html index e64ed8bdf..c614ed9d0 100644 --- a/doc/api/group__suback__v3__1__1.html +++ b/doc/api/group__suback__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__suback__v3__1__1__detail.html b/doc/api/group__suback__v3__1__1__detail.html index 66303c8af..330cf4ef4 100644 --- a/doc/api/group__suback__v3__1__1__detail.html +++ b/doc/api/group__suback__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__suback__v5.html b/doc/api/group__suback__v5.html index 0ee9768f3..323bd7613 100644 --- a/doc/api/group__suback__v5.html +++ b/doc/api/group__suback__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__suback__v5__detail.html b/doc/api/group__suback__v5__detail.html index 37698f107..5eda91a3f 100644 --- a/doc/api/group__suback__v5__detail.html +++ b/doc/api/group__suback__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__subscribe__options.html b/doc/api/group__subscribe__options.html index 598843b68..e7e71ba1c 100644 --- a/doc/api/group__subscribe__options.html +++ b/doc/api/group__subscribe__options.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__subscribe__v3__1__1.html b/doc/api/group__subscribe__v3__1__1.html index d774a99a7..2d8100b6f 100644 --- a/doc/api/group__subscribe__v3__1__1.html +++ b/doc/api/group__subscribe__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__subscribe__v3__1__1__detail.html b/doc/api/group__subscribe__v3__1__1__detail.html index 107d3602e..291927445 100644 --- a/doc/api/group__subscribe__v3__1__1__detail.html +++ b/doc/api/group__subscribe__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__subscribe__v5.html b/doc/api/group__subscribe__v5.html index cc43ccfed..dd97858e6 100644 --- a/doc/api/group__subscribe__v5.html +++ b/doc/api/group__subscribe__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__subscribe__v5__detail.html b/doc/api/group__subscribe__v5__detail.html index d21070d6b..94aedfdbe 100644 --- a/doc/api/group__subscribe__v5__detail.html +++ b/doc/api/group__subscribe__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__underlying__customize.html b/doc/api/group__underlying__customize.html index 176082d15..8e4239e21 100644 --- a/doc/api/group__underlying__customize.html +++ b/doc/api/group__underlying__customize.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__underlying__layer.html b/doc/api/group__underlying__layer.html index a19ffd377..af31ab085 100644 --- a/doc/api/group__underlying__layer.html +++ b/doc/api/group__underlying__layer.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsuback__reason__code.html b/doc/api/group__unsuback__reason__code.html index 1c51d2f21..cc245b463 100644 --- a/doc/api/group__unsuback__reason__code.html +++ b/doc/api/group__unsuback__reason__code.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsuback__v3__1__1.html b/doc/api/group__unsuback__v3__1__1.html index d1a2edbf5..ee24506a2 100644 --- a/doc/api/group__unsuback__v3__1__1.html +++ b/doc/api/group__unsuback__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsuback__v3__1__1__detail.html b/doc/api/group__unsuback__v3__1__1__detail.html index ff74b6483..dd11f60b8 100644 --- a/doc/api/group__unsuback__v3__1__1__detail.html +++ b/doc/api/group__unsuback__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsuback__v5.html b/doc/api/group__unsuback__v5.html index 9039f3f69..5a34c2bf7 100644 --- a/doc/api/group__unsuback__v5.html +++ b/doc/api/group__unsuback__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsuback__v5__detail.html b/doc/api/group__unsuback__v5__detail.html index 3fbb2ae7c..fdb423757 100644 --- a/doc/api/group__unsuback__v5__detail.html +++ b/doc/api/group__unsuback__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsubscribe__v3__1__1.html b/doc/api/group__unsubscribe__v3__1__1.html index 5c3e15c01..aa4ec3f64 100644 --- a/doc/api/group__unsubscribe__v3__1__1.html +++ b/doc/api/group__unsubscribe__v3__1__1.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsubscribe__v3__1__1__detail.html b/doc/api/group__unsubscribe__v3__1__1__detail.html index 638f7d1ca..bde5634d7 100644 --- a/doc/api/group__unsubscribe__v3__1__1__detail.html +++ b/doc/api/group__unsubscribe__v3__1__1__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsubscribe__v5.html b/doc/api/group__unsubscribe__v5.html index 1643e1d46..b0b304941 100644 --- a/doc/api/group__unsubscribe__v5.html +++ b/doc/api/group__unsubscribe__v5.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/group__unsubscribe__v5__detail.html b/doc/api/group__unsubscribe__v5__detail.html index e0cf309a7..9c8f16d46 100644 --- a/doc/api/group__unsubscribe__v5__detail.html +++ b/doc/api/group__unsubscribe__v5__detail.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/host__port_8hpp_source.html b/doc/api/host__port_8hpp_source.html index 99257c744..64c32624b 100644 --- a/doc/api/host__port_8hpp_source.html +++ b/doc/api/host__port_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/index.html b/doc/api/index.html index 57227a167..86de75820 100644 --- a/doc/api/index.html +++ b/doc/api/index.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/inline_8hpp_source.html b/doc/api/inline_8hpp_source.html index dd445317a..19c2145d8 100644 --- a/doc/api/inline_8hpp_source.html +++ b/doc/api/inline_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/ioc__queue_8hpp_source.html b/doc/api/ioc__queue_8hpp_source.html index 03912f57c..f86bbe291 100644 --- a/doc/api/ioc__queue_8hpp_source.html +++ b/doc/api/ioc__queue_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/json__like__out_8hpp_source.html b/doc/api/json__like__out_8hpp_source.html index 702b3b05d..8f83ee0d6 100644 --- a/doc/api/json__like__out_8hpp_source.html +++ b/doc/api/json__like__out_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/log_8hpp_source.html b/doc/api/log_8hpp_source.html index 99e507db5..689353413 100644 --- a/doc/api/log_8hpp_source.html +++ b/doc/api/log_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/move_8hpp_source.html b/doc/api/move_8hpp_source.html index 3404c7be8..d4570ffea 100644 --- a/doc/api/move_8hpp_source.html +++ b/doc/api/move_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/mqtt_8hpp_source.html b/doc/api/mqtt_8hpp_source.html index 9dd3da683..e7f636edd 100644 --- a/doc/api/mqtt_8hpp_source.html +++ b/doc/api/mqtt_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/mqtts_8hpp_source.html b/doc/api/mqtts_8hpp_source.html index 27ffa77d9..c4bc72f4a 100644 --- a/doc/api/mqtts_8hpp_source.html +++ b/doc/api/mqtts_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/navtreeindex3.js b/doc/api/navtreeindex3.js index 2d71d53e6..a4d6db2d8 100644 --- a/doc/api/navtreeindex3.js +++ b/doc/api/navtreeindex3.js @@ -225,9 +225,9 @@ var NAVTREEINDEX3 = "group__error.html#gaad563eceb8ce08b31fc1d5d61ad9811f":[0,1,2], "group__error__reporting.html":[0,1,0], "group__log.html":[0,3], +"group__log.html#ga380e70ad37525b716fab2df30eeb5949":[0,3,2], "group__log.html#ga3abd0c0ebf71c7d01def2a00423d1abf":[0,3,0], -"group__log.html#ga61df85c3992a1a67d0342ddecb05ef52":[0,3,2], -"group__log.html#ga9d3595338fa766b0916c26168023bf33":[0,3,1], +"group__log.html#gaa9a6cd71475ce3a8c125e55aa85eb9db":[0,3,1], "group__log.html#gga3abd0c0ebf71c7d01def2a00423d1abfa04a75036e9d520bb983c5ed03b8d0182":[0,3,0,0], "group__log.html#gga3abd0c0ebf71c7d01def2a00423d1abfa7b83d3f08fa392b79e3f553b585971cd":[0,3,0,3], "group__log.html#gga3abd0c0ebf71c7d01def2a00423d1abfaad42f6697b035b7580e4fef93be20b4d":[0,3,0,1], diff --git a/doc/api/overload_8hpp_source.html b/doc/api/overload_8hpp_source.html index 935c20c70..06cc4c5bf 100644 --- a/doc/api/overload_8hpp_source.html +++ b/doc/api/overload_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/packet__fwd_8hpp_source.html b/doc/api/packet__fwd_8hpp_source.html index 39ed46f2c..0768e31b8 100644 --- a/doc/api/packet__fwd_8hpp_source.html +++ b/doc/api/packet__fwd_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/packet__helper_8hpp_source.html b/doc/api/packet__helper_8hpp_source.html index bdfdb0902..65dfe686b 100644 --- a/doc/api/packet__helper_8hpp_source.html +++ b/doc/api/packet__helper_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/packet__id__manager_8hpp_source.html b/doc/api/packet__id__manager_8hpp_source.html index 2c4853fdc..ab3164386 100644 --- a/doc/api/packet__id__manager_8hpp_source.html +++ b/doc/api/packet__id__manager_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/packet__id__type_8hpp_source.html b/doc/api/packet__id__type_8hpp_source.html index 2b005c0ff..3682850a4 100644 --- a/doc/api/packet__id__type_8hpp_source.html +++ b/doc/api/packet__id__type_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/packet__iterator_8hpp_source.html b/doc/api/packet__iterator_8hpp_source.html index 016d8fc27..f6d4b8ce7 100644 --- a/doc/api/packet__iterator_8hpp_source.html +++ b/doc/api/packet__iterator_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/packet__traits_8hpp_source.html b/doc/api/packet__traits_8hpp_source.html index e874b54cd..70b87e368 100644 --- a/doc/api/packet__traits_8hpp_source.html +++ b/doc/api/packet__traits_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/packet__variant_8hpp_source.html b/doc/api/packet__variant_8hpp_source.html index b03b4272c..32ef68529 100644 --- a/doc/api/packet__variant_8hpp_source.html +++ b/doc/api/packet__variant_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/packet__variant__fwd_8hpp_source.html b/doc/api/packet__variant__fwd_8hpp_source.html index e5a782e1f..6bf1cda00 100644 --- a/doc/api/packet__variant__fwd_8hpp_source.html +++ b/doc/api/packet__variant__fwd_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/property_8hpp_source.html b/doc/api/property_8hpp_source.html index 88f744cfe..a31e963a4 100644 --- a/doc/api/property_8hpp_source.html +++ b/doc/api/property_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/property__id_8hpp_source.html b/doc/api/property__id_8hpp_source.html index 4cad631ab..63ab72959 100644 --- a/doc/api/property__id_8hpp_source.html +++ b/doc/api/property__id_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/property__variant_8hpp_source.html b/doc/api/property__variant_8hpp_source.html index 2da0d1c0a..0094cd5af 100644 --- a/doc/api/property__variant_8hpp_source.html +++ b/doc/api/property__variant_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/protocol__version_8hpp_source.html b/doc/api/protocol__version_8hpp_source.html index 12179d92d..1a77a2ee6 100644 --- a/doc/api/protocol__version_8hpp_source.html +++ b/doc/api/protocol__version_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/pubopts_8hpp_source.html b/doc/api/pubopts_8hpp_source.html index 0ef13786a..70aabb8c4 100644 --- a/doc/api/pubopts_8hpp_source.html +++ b/doc/api/pubopts_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/qos_8hpp_source.html b/doc/api/qos_8hpp_source.html index f9bdae9c1..fb48c25c3 100644 --- a/doc/api/qos_8hpp_source.html +++ b/doc/api/qos_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/qos__util_8hpp_source.html b/doc/api/qos__util_8hpp_source.html index c2e33e651..d78416732 100644 --- a/doc/api/qos__util_8hpp_source.html +++ b/doc/api/qos__util_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/role_8hpp_source.html b/doc/api/role_8hpp_source.html index 54fa076b1..bf1655384 100644 --- a/doc/api/role_8hpp_source.html +++ b/doc/api/role_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/scope__guard_8hpp_source.html b/doc/api/scope__guard_8hpp_source.html index 85d0ec3af..102120eb9 100644 --- a/doc/api/scope__guard_8hpp_source.html +++ b/doc/api/scope__guard_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/search/all_15.js b/doc/api/search/all_15.js index e3c6619df..6bbb48c63 100644 --- a/doc/api/search/all_15.js +++ b/doc/api/search/all_15.js @@ -25,7 +25,7 @@ var searchData= ['set_5fdup_22',['set_dup',['../classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet.html#a9c59ccb015da0f9016449cdca42cff4e',1,'async_mqtt::v3_1_1::basic_publish_packet::set_dup()'],['../classasync__mqtt_1_1v5_1_1basic__publish__packet.html#a3e740a0de47d9b13964c5da49458d9e3',1,'async_mqtt::v5::basic_publish_packet::set_dup()'],['../group__publish__options.html#ga52fa7b3b39f4ce5c0bc770cbfbf2094f',1,'async_mqtt::pub::opts::set_dup()'],['../group__publish__options.html#ga52fa7b3b39f4ce5c0bc770cbfbf2094f',1,'async_mqtt::pub::set_dup()']]], ['set_5fpingreq_5fsend_5finterval_23',['set_pingreq_send_interval',['../classasync__mqtt_1_1basic__endpoint.html#ad50d613544ac977dbc69c64c367eeb32',1,'async_mqtt::basic_endpoint']]], ['set_5fpingresp_5frecv_5ftimeout_24',['set_pingresp_recv_timeout',['../classasync__mqtt_1_1client.html#a091ab1426321033e7e6670dee529beab',1,'async_mqtt::client::set_pingresp_recv_timeout()'],['../classasync__mqtt_1_1basic__endpoint.html#a304a6bc9c9db1435b06b79217c8375dd',1,'async_mqtt::basic_endpoint::set_pingresp_recv_timeout()']]], - ['setup_5flog_25',['setup_log',['../group__log.html#ga61df85c3992a1a67d0342ddecb05ef52',1,'async_mqtt::setup_log(std::map< std::string, severity_level > threshold)'],['../group__log.html#ga9d3595338fa766b0916c26168023bf33',1,'async_mqtt::setup_log(severity_level threshold=severity_level::warning)']]], + ['setup_5flog_25',['setup_log',['../group__log.html#ga380e70ad37525b716fab2df30eeb5949',1,'async_mqtt::setup_log(std::map< std::string, severity_level > threshold, bool colored=true)'],['../group__log.html#gaa9a6cd71475ce3a8c125e55aa85eb9db',1,'async_mqtt::setup_log(severity_level threshold=severity_level::warning, bool colored=true)']]], ['severity_5flevel_26',['severity_level',['../group__log.html#ga3abd0c0ebf71c7d01def2a00423d1abf',1,'async_mqtt']]], ['shared_5fsubscription_5favailable_27',['shared_subscription_available',['../classasync__mqtt_1_1property_1_1shared__subscription__available.html',1,'async_mqtt::property::shared_subscription_available'],['../classasync__mqtt_1_1property_1_1shared__subscription__available.html#aa449b3f9e4d3530ae9af47d5f5477f84',1,'async_mqtt::property::shared_subscription_available::shared_subscription_available()'],['../group__property.html#gga5cb48750d7fa394639fc0dada2c34f89a570f14f4d526fcea83d5b11db9f9f0e4',1,'shared_subscription_availableasync_mqtt::property']]], ['shared_5fsubscriptions_5fnot_5fsupported_28',['shared_subscriptions_not_supported',['../group__disconnect__reason__code.html#gga15697ab1af4bc8686af3e88886db3565a608608c7ce5d694b9d50e94c007d5123',1,'shared_subscriptions_not_supportedasync_mqtt'],['../group__suback__reason__code.html#ggac1d8426ede60ae4e6c723a7687542fc6a608608c7ce5d694b9d50e94c007d5123',1,'shared_subscriptions_not_supportedasync_mqtt']]], diff --git a/doc/api/search/functions_11.js b/doc/api/search/functions_11.js index 529a55c7a..f82adc14f 100644 --- a/doc/api/search/functions_11.js +++ b/doc/api/search/functions_11.js @@ -13,7 +13,7 @@ var searchData= ['set_5fdup_10',['set_dup',['../classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet.html#a9c59ccb015da0f9016449cdca42cff4e',1,'async_mqtt::v3_1_1::basic_publish_packet::set_dup()'],['../classasync__mqtt_1_1v5_1_1basic__publish__packet.html#a3e740a0de47d9b13964c5da49458d9e3',1,'async_mqtt::v5::basic_publish_packet::set_dup()'],['../group__publish__options.html#ga52fa7b3b39f4ce5c0bc770cbfbf2094f',1,'async_mqtt::pub::opts::set_dup()'],['../group__publish__options.html#ga52fa7b3b39f4ce5c0bc770cbfbf2094f',1,'async_mqtt::pub::set_dup()']]], ['set_5fpingreq_5fsend_5finterval_11',['set_pingreq_send_interval',['../classasync__mqtt_1_1basic__endpoint.html#ad50d613544ac977dbc69c64c367eeb32',1,'async_mqtt::basic_endpoint']]], ['set_5fpingresp_5frecv_5ftimeout_12',['set_pingresp_recv_timeout',['../classasync__mqtt_1_1client.html#a091ab1426321033e7e6670dee529beab',1,'async_mqtt::client::set_pingresp_recv_timeout()'],['../classasync__mqtt_1_1basic__endpoint.html#a304a6bc9c9db1435b06b79217c8375dd',1,'async_mqtt::basic_endpoint::set_pingresp_recv_timeout()']]], - ['setup_5flog_13',['setup_log',['../group__log.html#ga61df85c3992a1a67d0342ddecb05ef52',1,'async_mqtt::setup_log(std::map< std::string, severity_level > threshold)'],['../group__log.html#ga9d3595338fa766b0916c26168023bf33',1,'async_mqtt::setup_log(severity_level threshold=severity_level::warning)']]], + ['setup_5flog_13',['setup_log',['../group__log.html#ga380e70ad37525b716fab2df30eeb5949',1,'async_mqtt::setup_log(std::map< std::string, severity_level > threshold, bool colored=true)'],['../group__log.html#gaa9a6cd71475ce3a8c125e55aa85eb9db',1,'async_mqtt::setup_log(severity_level threshold=severity_level::warning, bool colored=true)']]], ['shared_5fsubscription_5favailable_14',['shared_subscription_available',['../classasync__mqtt_1_1property_1_1shared__subscription__available.html#aa449b3f9e4d3530ae9af47d5f5477f84',1,'async_mqtt::property::shared_subscription_available']]], ['sharename_15',['sharename',['../classasync__mqtt_1_1topic__sharename.html#a031032535be5a2d425f1905f250499bb',1,'async_mqtt::topic_sharename::sharename()'],['../classasync__mqtt_1_1topic__subopts.html#a0338f53fa77add5ab971cd9f8caf7069',1,'async_mqtt::topic_subopts::sharename()']]], ['size_16',['size',['../classasync__mqtt_1_1property_1_1content__type.html#a09a15519faf4d27ce25dab3ed5ba272c',1,'async_mqtt::property::content_type::size()'],['../classasync__mqtt_1_1property_1_1response__topic.html#a1dfcb1388e83ce6d340ba80f66b5b2b6',1,'async_mqtt::property::response_topic::size()'],['../classasync__mqtt_1_1property_1_1correlation__data.html#ad59da57de31e0e3fa2afd2b7f55146df',1,'async_mqtt::property::correlation_data::size()'],['../classasync__mqtt_1_1property_1_1assigned__client__identifier.html#a7ce7b5de9996d727b9575c24580db6a3',1,'async_mqtt::property::assigned_client_identifier::size()'],['../classasync__mqtt_1_1property_1_1authentication__method.html#a533c1e5752df4a8d88b1695111bda79f',1,'async_mqtt::property::authentication_method::size()'],['../classasync__mqtt_1_1property_1_1authentication__data.html#a364a7eb3b4819ca9adf928e14ec53403',1,'async_mqtt::property::authentication_data::size()'],['../classasync__mqtt_1_1property_1_1response__information.html#a7d75250cb63b25f0203d03528bc05368',1,'async_mqtt::property::response_information::size()'],['../classasync__mqtt_1_1property_1_1server__reference.html#afe1317370799eb066084b0800785224f',1,'async_mqtt::property::server_reference::size()'],['../classasync__mqtt_1_1property_1_1reason__string.html#a416f026c7be7a2900e5b73ab0ea5fec5',1,'async_mqtt::property::reason_string::size()'],['../classasync__mqtt_1_1property_1_1user__property.html#a5435b2a2cb86a9f91e3ae5377ccd7ddf',1,'async_mqtt::property::user_property::size()'],['../classasync__mqtt_1_1property__variant.html#a5ad7efea2e2ee2ce25d094f4f991870d',1,'async_mqtt::property_variant::size()'],['../classasync__mqtt_1_1basic__store__packet__variant.html#a7e8b102c72819ef78e8b2f55e7f2599e',1,'async_mqtt::basic_store_packet_variant::size()'],['../classasync__mqtt_1_1v3__1__1_1_1connack__packet.html#aba7bcd19668ee600c7d804d43c004d9f',1,'async_mqtt::v3_1_1::connack_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1connect__packet.html#a2d37a0b8e09a6ef1897f76f44c0cbb06',1,'async_mqtt::v3_1_1::connect_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1disconnect__packet.html#a2c67050ca4a11551765180fa7d62039b',1,'async_mqtt::v3_1_1::disconnect_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1pingreq__packet.html#ae8f845776d61cced7df729f440a54830',1,'async_mqtt::v3_1_1::pingreq_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1pingresp__packet.html#a80978bf35695f7e535020a12a4d32a04',1,'async_mqtt::v3_1_1::pingresp_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__puback__packet.html#ab68b9199a1ace4615cdceff2d48f0758',1,'async_mqtt::v3_1_1::basic_puback_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__pubcomp__packet.html#acb9ec69f89dcf03e37797d5dfe91ba08',1,'async_mqtt::v3_1_1::basic_pubcomp_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__publish__packet.html#ac86167ea3b7a64434feb0c50dabb3130',1,'async_mqtt::v3_1_1::basic_publish_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__pubrec__packet.html#a15f7f55fe27daa4e32af8ff5f47fa908',1,'async_mqtt::v3_1_1::basic_pubrec_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__pubrel__packet.html#ab76cb59bb22f9146bbc651460b5ab13a',1,'async_mqtt::v3_1_1::basic_pubrel_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__suback__packet.html#a6fa63c24d7c04448c452af1d6f0c20b5',1,'async_mqtt::v3_1_1::basic_suback_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__subscribe__packet.html#a9128a74a35ec84e62bdd606120723884',1,'async_mqtt::v3_1_1::basic_subscribe_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__unsuback__packet.html#ace3c38f18536bc5f97aa5dc27a03f451',1,'async_mqtt::v3_1_1::basic_unsuback_packet::size()'],['../classasync__mqtt_1_1v3__1__1_1_1basic__unsubscribe__packet.html#a886a07c56a61e5de253dfc9cbf24b5ea',1,'async_mqtt::v3_1_1::basic_unsubscribe_packet::size()'],['../classasync__mqtt_1_1v5_1_1auth__packet.html#a0285b192c7a1d04db056c0ecb42a1e26',1,'async_mqtt::v5::auth_packet::size()'],['../classasync__mqtt_1_1v5_1_1connack__packet.html#a19306b5ff86ccd3fe3fb9669b3145ac3',1,'async_mqtt::v5::connack_packet::size()'],['../classasync__mqtt_1_1v5_1_1connect__packet.html#a2f670df73b1aca8415a92404c759413c',1,'async_mqtt::v5::connect_packet::size()'],['../classasync__mqtt_1_1v5_1_1disconnect__packet.html#a3f23c165387d5273fe4a029a77a7b092',1,'async_mqtt::v5::disconnect_packet::size()'],['../classasync__mqtt_1_1v5_1_1pingreq__packet.html#a9a83a6da39ef7365d6255efd266b87ad',1,'async_mqtt::v5::pingreq_packet::size()'],['../classasync__mqtt_1_1v5_1_1pingresp__packet.html#a30898ee1237b9f32232e2b722d401755',1,'async_mqtt::v5::pingresp_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__puback__packet.html#a9260977b086e8432c1d165de5ddf79d3',1,'async_mqtt::v5::basic_puback_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__pubcomp__packet.html#ae45ee1b9fbec8ce80dd00d0e934546ee',1,'async_mqtt::v5::basic_pubcomp_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__publish__packet.html#af7838e4773ab0ed359251d959cd4a31d',1,'async_mqtt::v5::basic_publish_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__pubrec__packet.html#aa5d1e29a3eee0f534f01bf46266aa68e',1,'async_mqtt::v5::basic_pubrec_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__pubrel__packet.html#a20eabefbe61aa64d44b572644502e630',1,'async_mqtt::v5::basic_pubrel_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__suback__packet.html#a809103b035f0c882965a1fbe6cd5d6a0',1,'async_mqtt::v5::basic_suback_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__subscribe__packet.html#a4ff7552175889a5a274fdbd72a4e2241',1,'async_mqtt::v5::basic_subscribe_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__unsuback__packet.html#a5e2b946ad7e9ebb602e329c37ed3a873',1,'async_mqtt::v5::basic_unsuback_packet::size()'],['../classasync__mqtt_1_1v5_1_1basic__unsubscribe__packet.html#a55301bcaa6044b38ccb5a754a24452dc',1,'async_mqtt::v5::basic_unsubscribe_packet::size()'],['../classasync__mqtt_1_1buffer.html#a6e30bb89d7851e7a5568b22ef7912838',1,'async_mqtt::buffer::size()']]], diff --git a/doc/api/setup__log_8hpp_source.html b/doc/api/setup__log_8hpp_source.html index c7c0f9950..c60a9e1a4 100644 --- a/doc/api/setup__log_8hpp_source.html +++ b/doc/api/setup__log_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
@@ -141,114 +141,115 @@
39 "\033[31m", // fatal
40};
41
-
54inline
-
-
55void setup_log(std::map<std::string, severity_level> threshold) {
-
56 // https://www.boost.org/doc/libs/1_73_0/libs/log/doc/html/log/tutorial/advanced_filtering.html
-
57
-
58 auto fmt =
-
59 [](boost::log::record_view const& rec, boost::log::formatting_ostream& strm) {
-
60 // Timestamp custom formatting example
-
61 if (auto v = boost::log::extract<boost::posix_time::ptime>("TimeStamp", rec)) {
-
62 strm.imbue(
-
63 std::locale(
-
64 strm.getloc(),
-
65 // https://www.boost.org/doc/html/date_time/date_time_io.html#date_time.format_flags
-
66 new boost::posix_time::time_facet("%H:%M:%s") // ownership is moved here
-
67 )
-
68 );
-
69 strm << v.get() << " ";
-
70 }
-
71 // ThreadID example
-
72 if (auto v = boost::log::extract<boost::log::thread_id>("ThreadID", rec)) {
-
73 strm << "T:" << v.get() << " ";
-
74 }
-
75 // Adjust severity length example
-
76 if (auto v = boost::log::extract<severity_level>("Severity", rec)) {
-
77 strm << log_color_table[static_cast<std::size_t>(v.get())];
-
78 strm << "S:" << std::setw(7) << std::left << v.get() << " ";
-
79 }
-
80 if (auto v = boost::log::extract<channel>("Channel", rec)) {
-
81 strm << "C:" << std::setw(5) << std::left << v.get() << " ";
-
82 }
-
83 // Shorten file path example
-
84 if (auto v = boost::log::extract<std::string>("MqttFile", rec)) {
-
85 strm << boost::filesystem::path(v.get()).filename().string() << ":";
-
86 }
-
87 if (auto v = boost::log::extract<unsigned int>("MqttLine", rec)) {
-
88 strm << v.get() << " ";
-
89 }
-
90 if (auto v = boost::log::extract<void const*>("MqttAddress", rec)) {
-
91 strm << "A:" << v.get() << " ";
-
92 }
-
93
-
94#if 0 // function is ofthen noisy
-
95 if (auto v = boost::log::extract<std::string>("MqttFunction", rec)) {
-
96 strm << v << ":";
-
97 }
-
98#endif
-
99 strm << rec[boost::log::expressions::smessage];
-
100 strm << "\033[0m";
-
101 };
-
102
-
103 // https://www.boost.org/doc/libs/1_73_0/libs/log/doc/html/log/tutorial/sinks.html
-
104 boost::shared_ptr<std::ostream> stream(&std::clog, boost::null_deleter());
-
105
-
106 using text_sink = boost::log::sinks::synchronous_sink<boost::log::sinks::text_ostream_backend>;
-
107 auto sink = boost::make_shared<text_sink>();
-
108 sink->locked_backend()->add_stream(stream);
-
109 sink->set_formatter(fmt);
-
110
-
111 auto fil =
-
112 [threshold = force_move(threshold)]
-
113 (boost::log::attribute_value_set const& avs) {
-
114 {
-
115 // For mqtt
-
116 auto chan = boost::log::extract<channel>("Channel", avs);
-
117 auto sev = boost::log::extract<severity_level>("Severity", avs);
-
118 if (chan && sev) {
-
119 auto it = threshold.find(chan.get());
-
120 if (it == threshold.end()) return false;
-
121 return sev.get() >= it->second;
-
122 }
-
123 }
-
124 return true;
-
125 };
-
126
-
127 boost::log::core::get()->set_filter(fil);
-
128 boost::log::core::get()->add_sink(sink);
-
129
-
130 boost::log::add_common_attributes();
-
131}
+
56inline
+
+
57void setup_log(std::map<std::string, severity_level> threshold, bool colored = true) {
+
58 // https://www.boost.org/doc/libs/1_73_0/libs/log/doc/html/log/tutorial/advanced_filtering.html
+
59
+
60 auto fmt =
+
61 [colored](boost::log::record_view const& rec, boost::log::formatting_ostream& strm) {
+
62 // Timestamp custom formatting example
+
63 if (auto v = boost::log::extract<boost::posix_time::ptime>("TimeStamp", rec)) {
+
64 strm.imbue(
+
65 std::locale(
+
66 strm.getloc(),
+
67 // https://www.boost.org/doc/html/date_time/date_time_io.html#date_time.format_flags
+
68 new boost::posix_time::time_facet("%H:%M:%s") // ownership is moved here
+
69 )
+
70 );
+
71 strm << v.get() << " ";
+
72 }
+
73 // ThreadID example
+
74 if (auto v = boost::log::extract<boost::log::thread_id>("ThreadID", rec)) {
+
75 strm << "T:" << v.get() << " ";
+
76 }
+
77 // Adjust severity length example
+
78 if (auto v = boost::log::extract<severity_level>("Severity", rec)) {
+
79 if (colored) strm << log_color_table[static_cast<std::size_t>(v.get())];
+
80 strm << "S:" << std::setw(7) << std::left << v.get() << " ";
+
81 }
+
82 if (auto v = boost::log::extract<channel>("Channel", rec)) {
+
83 strm << "C:" << std::setw(5) << std::left << v.get() << " ";
+
84 }
+
85 // Shorten file path example
+
86 if (auto v = boost::log::extract<std::string>("MqttFile", rec)) {
+
87 strm << boost::filesystem::path(v.get()).filename().string() << ":";
+
88 }
+
89 if (auto v = boost::log::extract<unsigned int>("MqttLine", rec)) {
+
90 strm << v.get() << " ";
+
91 }
+
92 if (auto v = boost::log::extract<void const*>("MqttAddress", rec)) {
+
93 strm << "A:" << v.get() << " ";
+
94 }
+
95
+
96#if 0 // function is ofthen noisy
+
97 if (auto v = boost::log::extract<std::string>("MqttFunction", rec)) {
+
98 strm << v << ":";
+
99 }
+
100#endif
+
101 strm << rec[boost::log::expressions::smessage];
+
102 strm << "\033[0m";
+
103 };
+
104
+
105 // https://www.boost.org/doc/libs/1_73_0/libs/log/doc/html/log/tutorial/sinks.html
+
106 boost::shared_ptr<std::ostream> stream(&std::clog, boost::null_deleter());
+
107
+
108 using text_sink = boost::log::sinks::synchronous_sink<boost::log::sinks::text_ostream_backend>;
+
109 auto sink = boost::make_shared<text_sink>();
+
110 sink->locked_backend()->add_stream(stream);
+
111 sink->set_formatter(fmt);
+
112
+
113 auto fil =
+
114 [threshold = force_move(threshold)]
+
115 (boost::log::attribute_value_set const& avs) {
+
116 {
+
117 // For mqtt
+
118 auto chan = boost::log::extract<channel>("Channel", avs);
+
119 auto sev = boost::log::extract<severity_level>("Severity", avs);
+
120 if (chan && sev) {
+
121 auto it = threshold.find(chan.get());
+
122 if (it == threshold.end()) return false;
+
123 return sev.get() >= it->second;
+
124 }
+
125 }
+
126 return true;
+
127 };
+
128
+
129 boost::log::core::get()->set_filter(fil);
+
130 boost::log::core::get()->add_sink(sink);
+
131
+
132 boost::log::add_common_attributes();
+
133}
-
132
-
145inline
-
- -
147 setup_log(
-
148 {
-
149 { "mqtt_api", threshold },
-
150 { "mqtt_cb", threshold },
-
151 { "mqtt_impl", threshold },
-
152 { "mqtt_broker", threshold },
-
153 { "mqtt_test", threshold },
-
154 }
-
155 );
-
156}
+
134
+
149inline
+
+
150void setup_log(severity_level threshold = severity_level::warning, bool colored = true) {
+
151 setup_log(
+
152 {
+
153 { "mqtt_api", threshold },
+
154 { "mqtt_cb", threshold },
+
155 { "mqtt_impl", threshold },
+
156 { "mqtt_broker", threshold },
+
157 { "mqtt_test", threshold },
+
158 },
+
159 colored
+
160 );
+
161}
-
157
-
158#else // defined(ASYNC_MQTT_USE_LOG)
-
159
-
160template <typename... Params>
-
161void setup_log(Params&&...) {}
162
-
163#endif // defined(ASYNC_MQTT_USE_LOG)
+
163#else // defined(ASYNC_MQTT_USE_LOG)
164
-
165} // namespace async_mqtt
-
166
-
167#endif // ASYNC_MQTT_UTIL_SETUP_LOG_HPP
+
165template <typename... Params>
+
166void setup_log(Params&&...) {}
+
167
+
168#endif // defined(ASYNC_MQTT_USE_LOG)
+
169
+
170} // namespace async_mqtt
+
171
+
172#endif // ASYNC_MQTT_UTIL_SETUP_LOG_HPP
+
void setup_log(std::map< std::string, severity_level > threshold, bool colored=true)
Setup logging.
Definition setup_log.hpp:57
severity_level
Definition log.hpp:53
-
void setup_log(std::map< std::string, severity_level > threshold)
Setup logging.
Definition setup_log.hpp:55
@ warning
warning level such as timeout
diff --git a/doc/api/shared__ptr__array_8hpp_source.html b/doc/api/shared__ptr__array_8hpp_source.html index d79bafb46..80867a233 100644 --- a/doc/api/shared__ptr__array_8hpp_source.html +++ b/doc/api/shared__ptr__array_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/src_8hpp_source.html b/doc/api/src_8hpp_source.html index a440831fc..adbe0df71 100644 --- a/doc/api/src_8hpp_source.html +++ b/doc/api/src_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/static__vector_8hpp_source.html b/doc/api/static__vector_8hpp_source.html index 25422b566..c7fe2dcad 100644 --- a/doc/api/static__vector_8hpp_source.html +++ b/doc/api/static__vector_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/store_8hpp_source.html b/doc/api/store_8hpp_source.html index be72986aa..0a2d44428 100644 --- a/doc/api/store_8hpp_source.html +++ b/doc/api/store_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/store__packet__variant_8hpp_source.html b/doc/api/store__packet__variant_8hpp_source.html index 52ceecbda..50bb32f74 100644 --- a/doc/api/store__packet__variant_8hpp_source.html +++ b/doc/api/store__packet__variant_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/store__packet__variant__fwd_8hpp_source.html b/doc/api/store__packet__variant__fwd_8hpp_source.html index cb108ff7d..04209e62a 100644 --- a/doc/api/store__packet__variant__fwd_8hpp_source.html +++ b/doc/api/store__packet__variant__fwd_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/stream_8hpp_source.html b/doc/api/stream_8hpp_source.html index 737cd1fb4..c897591c1 100644 --- a/doc/api/stream_8hpp_source.html +++ b/doc/api/stream_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/stream__fwd_8hpp_source.html b/doc/api/stream__fwd_8hpp_source.html index 727623352..993ed7664 100644 --- a/doc/api/stream__fwd_8hpp_source.html +++ b/doc/api/stream__fwd_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/stream__traits_8hpp_source.html b/doc/api/stream__traits_8hpp_source.html index 472a4120c..2c441507f 100644 --- a/doc/api/stream__traits_8hpp_source.html +++ b/doc/api/stream__traits_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/string__view__helper_8hpp_source.html b/doc/api/string__view__helper_8hpp_source.html index e73e854f3..ab6e8d82e 100644 --- a/doc/api/string__view__helper_8hpp_source.html +++ b/doc/api/string__view__helper_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1basic__endpoint_1_1rebind__executor-members.html b/doc/api/structasync__mqtt_1_1basic__endpoint_1_1rebind__executor-members.html index 94b3e8578..19db8c0f8 100644 --- a/doc/api/structasync__mqtt_1_1basic__endpoint_1_1rebind__executor-members.html +++ b/doc/api/structasync__mqtt_1_1basic__endpoint_1_1rebind__executor-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1basic__endpoint_1_1rebind__executor.html b/doc/api/structasync__mqtt_1_1basic__endpoint_1_1rebind__executor.html index e2a609fbb..ddf326001 100644 --- a/doc/api/structasync__mqtt_1_1basic__endpoint_1_1rebind__executor.html +++ b/doc/api/structasync__mqtt_1_1basic__endpoint_1_1rebind__executor.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1basic__packet__id__type.html b/doc/api/structasync__mqtt_1_1basic__packet__id__type.html index 64f4511b0..accc2b796 100644 --- a/doc/api/structasync__mqtt_1_1basic__packet__id__type.html +++ b/doc/api/structasync__mqtt_1_1basic__packet__id__type.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1client_1_1pubres__type-members.html b/doc/api/structasync__mqtt_1_1client_1_1pubres__type-members.html index f1f953533..2aa49b370 100644 --- a/doc/api/structasync__mqtt_1_1client_1_1pubres__type-members.html +++ b/doc/api/structasync__mqtt_1_1client_1_1pubres__type-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1client_1_1pubres__type.html b/doc/api/structasync__mqtt_1_1client_1_1pubres__type.html index 878f4a329..5f0edf17b 100644 --- a/doc/api/structasync__mqtt_1_1client_1_1pubres__type.html +++ b/doc/api/structasync__mqtt_1_1client_1_1pubres__type.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1client_1_1rebind__executor-members.html b/doc/api/structasync__mqtt_1_1client_1_1rebind__executor-members.html index f8d1a967a..bf1f738dd 100644 --- a/doc/api/structasync__mqtt_1_1client_1_1rebind__executor-members.html +++ b/doc/api/structasync__mqtt_1_1client_1_1rebind__executor-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1client_1_1rebind__executor.html b/doc/api/structasync__mqtt_1_1client_1_1rebind__executor.html index 62de016b6..6557eb33f 100644 --- a/doc/api/structasync__mqtt_1_1client_1_1rebind__executor.html +++ b/doc/api/structasync__mqtt_1_1client_1_1rebind__executor.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1layer__customize.html b/doc/api/structasync__mqtt_1_1layer__customize.html index bfbca963c..75510874d 100644 --- a/doc/api/structasync__mqtt_1_1layer__customize.html +++ b/doc/api/structasync__mqtt_1_1layer__customize.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1basic__stream__socket_3_01Protocol_00_01Executor_01_4_01_4-members.html b/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1basic__stream__socket_3_01Protocol_00_01Executor_01_4_01_4-members.html index 84166f96d..99da9ddcb 100644 --- a/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1basic__stream__socket_3_01Protocol_00_01Executor_01_4_01_4-members.html +++ b/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1basic__stream__socket_3_01Protocol_00_01Executor_01_4_01_4-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1basic__stream__socket_3_01Protocol_00_01Executor_01_4_01_4.html b/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1basic__stream__socket_3_01Protocol_00_01Executor_01_4_01_4.html index aaf51a806..3caabcb36 100644 --- a/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1basic__stream__socket_3_01Protocol_00_01Executor_01_4_01_4.html +++ b/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1basic__stream__socket_3_01Protocol_00_01Executor_01_4_01_4.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1ssl_1_1stream_3_01NextLayer_01_4_01_4-members.html b/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1ssl_1_1stream_3_01NextLayer_01_4_01_4-members.html index 2e6e29c68..9a76f4b7a 100644 --- a/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1ssl_1_1stream_3_01NextLayer_01_4_01_4-members.html +++ b/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1ssl_1_1stream_3_01NextLayer_01_4_01_4-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1ssl_1_1stream_3_01NextLayer_01_4_01_4.html b/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1ssl_1_1stream_3_01NextLayer_01_4_01_4.html index c5f5f5da1..978ef2dff 100644 --- a/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1ssl_1_1stream_3_01NextLayer_01_4_01_4.html +++ b/doc/api/structasync__mqtt_1_1layer__customize_3_01as_1_1ssl_1_1stream_3_01NextLayer_01_4_01_4.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1layer__customize_3_01bs_1_1websocket_1_1stream_3_01NextLayer_01_4_01_4-members.html b/doc/api/structasync__mqtt_1_1layer__customize_3_01bs_1_1websocket_1_1stream_3_01NextLayer_01_4_01_4-members.html index b49f63554..a57030544 100644 --- a/doc/api/structasync__mqtt_1_1layer__customize_3_01bs_1_1websocket_1_1stream_3_01NextLayer_01_4_01_4-members.html +++ b/doc/api/structasync__mqtt_1_1layer__customize_3_01bs_1_1websocket_1_1stream_3_01NextLayer_01_4_01_4-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1layer__customize_3_01bs_1_1websocket_1_1stream_3_01NextLayer_01_4_01_4.html b/doc/api/structasync__mqtt_1_1layer__customize_3_01bs_1_1websocket_1_1stream_3_01NextLayer_01_4_01_4.html index 06db8c7cc..8db89ffb2 100644 --- a/doc/api/structasync__mqtt_1_1layer__customize_3_01bs_1_1websocket_1_1stream_3_01NextLayer_01_4_01_4.html +++ b/doc/api/structasync__mqtt_1_1layer__customize_3_01bs_1_1websocket_1_1stream_3_01NextLayer_01_4_01_4.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1pub_1_1opts-members.html b/doc/api/structasync__mqtt_1_1pub_1_1opts-members.html index 5ac689d1a..4febc7f51 100644 --- a/doc/api/structasync__mqtt_1_1pub_1_1opts-members.html +++ b/doc/api/structasync__mqtt_1_1pub_1_1opts-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1pub_1_1opts.html b/doc/api/structasync__mqtt_1_1pub_1_1opts.html index 1c140bdda..b0e5286ff 100644 --- a/doc/api/structasync__mqtt_1_1pub_1_1opts.html +++ b/doc/api/structasync__mqtt_1_1pub_1_1opts.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1sub_1_1opts-members.html b/doc/api/structasync__mqtt_1_1sub_1_1opts-members.html index 62952dfb6..bd05daa8c 100644 --- a/doc/api/structasync__mqtt_1_1sub_1_1opts-members.html +++ b/doc/api/structasync__mqtt_1_1sub_1_1opts-members.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/structasync__mqtt_1_1sub_1_1opts.html b/doc/api/structasync__mqtt_1_1sub_1_1opts.html index b085dfbe6..f4bc69d33 100644 --- a/doc/api/structasync__mqtt_1_1sub_1_1opts.html +++ b/doc/api/structasync__mqtt_1_1sub_1_1opts.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/subopts_8hpp_source.html b/doc/api/subopts_8hpp_source.html index 8cce10de1..f8e0f1515 100644 --- a/doc/api/subopts_8hpp_source.html +++ b/doc/api/subopts_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/topic__alias__recv_8hpp_source.html b/doc/api/topic__alias__recv_8hpp_source.html index df66ccb02..20f59c4bf 100644 --- a/doc/api/topic__alias__recv_8hpp_source.html +++ b/doc/api/topic__alias__recv_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/topic__alias__send_8hpp_source.html b/doc/api/topic__alias__send_8hpp_source.html index 4674560e8..8d42ee37d 100644 --- a/doc/api/topic__alias__send_8hpp_source.html +++ b/doc/api/topic__alias__send_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/topic__sharename_8hpp_source.html b/doc/api/topic__sharename_8hpp_source.html index 55beefbca..db9214ee1 100644 --- a/doc/api/topic__sharename_8hpp_source.html +++ b/doc/api/topic__sharename_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/topic__subopts_8hpp_source.html b/doc/api/topic__subopts_8hpp_source.html index 131378cbe..72bb2dbf3 100644 --- a/doc/api/topic__subopts_8hpp_source.html +++ b/doc/api/topic__subopts_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/topics.html b/doc/api/topics.html index 1f5559986..5993ca476 100644 --- a/doc/api/topics.html +++ b/doc/api/topics.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/utf8validate_8hpp_source.html b/doc/api/utf8validate_8hpp_source.html index f69a5c257..235729c06 100644 --- a/doc/api/utf8validate_8hpp_source.html +++ b/doc/api/utf8validate_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__connack_8hpp_source.html b/doc/api/v3__1__1__connack_8hpp_source.html index d8c2d1774..b5628a754 100644 --- a/doc/api/v3__1__1__connack_8hpp_source.html +++ b/doc/api/v3__1__1__connack_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__connect_8hpp_source.html b/doc/api/v3__1__1__connect_8hpp_source.html index 15e2c5bd0..0cb35800b 100644 --- a/doc/api/v3__1__1__connect_8hpp_source.html +++ b/doc/api/v3__1__1__connect_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__disconnect_8hpp_source.html b/doc/api/v3__1__1__disconnect_8hpp_source.html index b751849da..02fa81f0f 100644 --- a/doc/api/v3__1__1__disconnect_8hpp_source.html +++ b/doc/api/v3__1__1__disconnect_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__pingreq_8hpp_source.html b/doc/api/v3__1__1__pingreq_8hpp_source.html index 7a146b6ee..0bc488663 100644 --- a/doc/api/v3__1__1__pingreq_8hpp_source.html +++ b/doc/api/v3__1__1__pingreq_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__pingresp_8hpp_source.html b/doc/api/v3__1__1__pingresp_8hpp_source.html index 904d9c1d5..873554904 100644 --- a/doc/api/v3__1__1__pingresp_8hpp_source.html +++ b/doc/api/v3__1__1__pingresp_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__puback_8hpp_source.html b/doc/api/v3__1__1__puback_8hpp_source.html index 835289602..b5c270d5f 100644 --- a/doc/api/v3__1__1__puback_8hpp_source.html +++ b/doc/api/v3__1__1__puback_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__pubcomp_8hpp_source.html b/doc/api/v3__1__1__pubcomp_8hpp_source.html index 0d09b2802..af229df09 100644 --- a/doc/api/v3__1__1__pubcomp_8hpp_source.html +++ b/doc/api/v3__1__1__pubcomp_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__publish_8hpp_source.html b/doc/api/v3__1__1__publish_8hpp_source.html index 294949ff2..c777e7a69 100644 --- a/doc/api/v3__1__1__publish_8hpp_source.html +++ b/doc/api/v3__1__1__publish_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__pubrec_8hpp_source.html b/doc/api/v3__1__1__pubrec_8hpp_source.html index 4b99b37e2..052f77a20 100644 --- a/doc/api/v3__1__1__pubrec_8hpp_source.html +++ b/doc/api/v3__1__1__pubrec_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__pubrel_8hpp_source.html b/doc/api/v3__1__1__pubrel_8hpp_source.html index 762036027..584952326 100644 --- a/doc/api/v3__1__1__pubrel_8hpp_source.html +++ b/doc/api/v3__1__1__pubrel_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__suback_8hpp_source.html b/doc/api/v3__1__1__suback_8hpp_source.html index 1e5822c72..78cd2866e 100644 --- a/doc/api/v3__1__1__suback_8hpp_source.html +++ b/doc/api/v3__1__1__suback_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__subscribe_8hpp_source.html b/doc/api/v3__1__1__subscribe_8hpp_source.html index ff9c56e04..86194fd14 100644 --- a/doc/api/v3__1__1__subscribe_8hpp_source.html +++ b/doc/api/v3__1__1__subscribe_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__unsuback_8hpp_source.html b/doc/api/v3__1__1__unsuback_8hpp_source.html index 54aec213e..0007fee93 100644 --- a/doc/api/v3__1__1__unsuback_8hpp_source.html +++ b/doc/api/v3__1__1__unsuback_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v3__1__1__unsubscribe_8hpp_source.html b/doc/api/v3__1__1__unsubscribe_8hpp_source.html index 9eaf249f1..2285a98b8 100644 --- a/doc/api/v3__1__1__unsubscribe_8hpp_source.html +++ b/doc/api/v3__1__1__unsubscribe_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__auth_8hpp_source.html b/doc/api/v5__auth_8hpp_source.html index 7374fe9e6..8d9dbbe67 100644 --- a/doc/api/v5__auth_8hpp_source.html +++ b/doc/api/v5__auth_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__connack_8hpp_source.html b/doc/api/v5__connack_8hpp_source.html index 93472afdc..a897e2293 100644 --- a/doc/api/v5__connack_8hpp_source.html +++ b/doc/api/v5__connack_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__connect_8hpp_source.html b/doc/api/v5__connect_8hpp_source.html index 740f68f06..8db178505 100644 --- a/doc/api/v5__connect_8hpp_source.html +++ b/doc/api/v5__connect_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__disconnect_8hpp_source.html b/doc/api/v5__disconnect_8hpp_source.html index f1b79c6f1..d0e0a7c30 100644 --- a/doc/api/v5__disconnect_8hpp_source.html +++ b/doc/api/v5__disconnect_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__pingreq_8hpp_source.html b/doc/api/v5__pingreq_8hpp_source.html index a1ea3e6d9..8a51a2c87 100644 --- a/doc/api/v5__pingreq_8hpp_source.html +++ b/doc/api/v5__pingreq_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__pingresp_8hpp_source.html b/doc/api/v5__pingresp_8hpp_source.html index ce9bb485f..0bad891ed 100644 --- a/doc/api/v5__pingresp_8hpp_source.html +++ b/doc/api/v5__pingresp_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__puback_8hpp_source.html b/doc/api/v5__puback_8hpp_source.html index 127b98757..f1702a78e 100644 --- a/doc/api/v5__puback_8hpp_source.html +++ b/doc/api/v5__puback_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__pubcomp_8hpp_source.html b/doc/api/v5__pubcomp_8hpp_source.html index 959a43c31..d511bcbdc 100644 --- a/doc/api/v5__pubcomp_8hpp_source.html +++ b/doc/api/v5__pubcomp_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__publish_8hpp_source.html b/doc/api/v5__publish_8hpp_source.html index c65ae1e0c..a8f31a3b1 100644 --- a/doc/api/v5__publish_8hpp_source.html +++ b/doc/api/v5__publish_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__pubrec_8hpp_source.html b/doc/api/v5__pubrec_8hpp_source.html index cba3824e6..68b925572 100644 --- a/doc/api/v5__pubrec_8hpp_source.html +++ b/doc/api/v5__pubrec_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__pubrel_8hpp_source.html b/doc/api/v5__pubrel_8hpp_source.html index 67446cd28..ec8175388 100644 --- a/doc/api/v5__pubrel_8hpp_source.html +++ b/doc/api/v5__pubrel_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__suback_8hpp_source.html b/doc/api/v5__suback_8hpp_source.html index 12944b4bc..d075448c9 100644 --- a/doc/api/v5__suback_8hpp_source.html +++ b/doc/api/v5__suback_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__subscribe_8hpp_source.html b/doc/api/v5__subscribe_8hpp_source.html index 039587179..990eeebeb 100644 --- a/doc/api/v5__subscribe_8hpp_source.html +++ b/doc/api/v5__subscribe_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__unsuback_8hpp_source.html b/doc/api/v5__unsuback_8hpp_source.html index 15ad74da8..f8f090179 100644 --- a/doc/api/v5__unsuback_8hpp_source.html +++ b/doc/api/v5__unsuback_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/v5__unsubscribe_8hpp_source.html b/doc/api/v5__unsubscribe_8hpp_source.html index 53246aeb8..bfa6c7285 100644 --- a/doc/api/v5__unsubscribe_8hpp_source.html +++ b/doc/api/v5__unsubscribe_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/value__allocator_8hpp_source.html b/doc/api/value__allocator_8hpp_source.html index 84b9a8c64..45cca440b 100644 --- a/doc/api/value__allocator_8hpp_source.html +++ b/doc/api/value__allocator_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/variable__bytes_8hpp_source.html b/doc/api/variable__bytes_8hpp_source.html index 03c7a282f..39aec7cc0 100644 --- a/doc/api/variable__bytes_8hpp_source.html +++ b/doc/api/variable__bytes_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/will_8hpp_source.html b/doc/api/will_8hpp_source.html index 6dcb2f7cb..f8b933248 100644 --- a/doc/api/will_8hpp_source.html +++ b/doc/api/will_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/ws_8hpp_source.html b/doc/api/ws_8hpp_source.html index 916b1dbd0..6c6e9a4bc 100644 --- a/doc/api/ws_8hpp_source.html +++ b/doc/api/ws_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/api/wss_8hpp_source.html b/doc/api/wss_8hpp_source.html index 2f1988162..69aa181c1 100644 --- a/doc/api/wss_8hpp_source.html +++ b/doc/api/wss_8hpp_source.html @@ -28,7 +28,7 @@ -
async_mqtt 9.0.3 +
async_mqtt 9.1.0
diff --git a/doc/functionality/logging.html b/doc/functionality/logging.html index 39a6599c6..f5663060f 100644 --- a/doc/functionality/logging.html +++ b/doc/functionality/logging.html @@ -154,7 +154,11 @@

logging

-
async_mqtt::setup_log(async_mqtt::severity_level::info); // you can use any other severity_level
+
async_mqtt::setup_log(
+    async_mqtt::severity_level::info, // you can use any other severity_level
+    true                              // if true or omit the argument
+                                      // log is colored, otherwise non colored
+);