Update examples, tests & docs

Summary: related to T13242

Reviewers: ivica

Reviewed By: ivica

Subscribers: miljen, iljazovic

Differential Revision: https://repo.mireo.local/D26889
This commit is contained in:
Korina Šimičević
2023-12-07 15:41:31 +01:00
parent e0a0bafbf1
commit 0d778c6b59
15 changed files with 274 additions and 168 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ asio::awaitable<void> client_publisher(asio::io_context& ioc) {
// Configure the ``__Client__``.
// It is mandatory to call brokers() and run() to configure the Brokers to connect to and start the Client.
client.brokers("mqtt.mireo.local", 1883) // Broker that we want to connect to. 1883 is the default TCP port.
client.brokers("mqtt.broker", 1883) // Broker that we want to connect to. 1883 is the default TCP port.
.run(); // Start the client.
// Publish an Application Message with QoS 1.