diff --git a/docs/MQTTAsync/html/_m_q_t_t_async_8h.html b/docs/MQTTAsync/html/_m_q_t_t_async_8h.html
index 59783986..e4ce09b0 100644
--- a/docs/MQTTAsync/html/_m_q_t_t_async_8h.html
+++ b/docs/MQTTAsync/html/_m_q_t_t_async_8h.html
@@ -1781,10 +1781,10 @@ Functions
| handle | A pointer to an MQTTAsync handle. The handle is populated with a valid client reference following a successful return from this function. |
| serverURI | A null-terminated string specifying the server to which the client will connect. It takes the form protocol://host:port where protocol must be:
tcp:// or mqtt:// - Insecure TCP
- ssl:// or mqtts:// - Encrypted SSL/TLS
+ ssl:// or tls:// or mqtts:// - Encrypted SSL/TLS
ws:// - Insecure websockets
wss:// - Secure web sockets
- The TLS enabled prefixes (ssl, mqtts, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a host name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883. |
+ The TLS enabled prefixes (ssl, tls, mqtts, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a host name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883.
| clientId | The client identifier passed to the server when the client connects to it. It is a null-terminated UTF-8 encoded string. |
| persistence_type | The type of persistence to be used by the client:
MQTTCLIENT_PERSISTENCE_NONE: Use in-memory persistence. If the device or system on which the client is running fails or is switched off, the current state of any in-flight messages is lost and some messages may not be delivered even at QoS1 and QoS2.
diff --git a/docs/MQTTAsync/html/_m_q_t_t_async_8h_source.html b/docs/MQTTAsync/html/_m_q_t_t_async_8h_source.html
index c300bb16..e9ab7d6a 100644
--- a/docs/MQTTAsync/html/_m_q_t_t_async_8h_source.html
+++ b/docs/MQTTAsync/html/_m_q_t_t_async_8h_source.html
@@ -76,7 +76,7 @@ $(function() {
Go to the documentation of this file.
-
+
diff --git a/docs/MQTTAsync/html/doxygen.css b/docs/MQTTAsync/html/doxygen.css
index 4c3d23b2..8339ff52 100644
--- a/docs/MQTTAsync/html/doxygen.css
+++ b/docs/MQTTAsync/html/doxygen.css
@@ -2442,7 +2442,7 @@ details[open]>summary::before {
html {
---timestamp: 'Sat Aug 16 2025 14:15:23'
+--timestamp: 'Fri Feb 20 2026 15:12:33'
}
span.timestamp { content: ' '; }
span.timestamp:before { content: var(--timestamp); }
diff --git a/docs/MQTTAsync/html/index.html b/docs/MQTTAsync/html/index.html
index e52dc1ab..b536c401 100644
--- a/docs/MQTTAsync/html/index.html
+++ b/docs/MQTTAsync/html/index.html
@@ -76,8 +76,8 @@ $(function() {
An Asynchronous MQTT client library for C.
- © Copyright 2009, 2025 IBM Corp., Ian Craggs and others.
- Version 1.3.15
+ © Copyright 2009, 2026 IBM Corp., Ian Craggs and others.
+ Version 1.3.16
An MQTT client application connects to MQTT-capable servers. A typical client is responsible for collecting information from a telemetry device and publishing the information to the server. It can also subscribe to topics, receive messages, and use this information to control the telemetry device.
MQTT clients implement the published MQTT v3 protocol. You can write your own API to the MQTT protocol using the programming language and platform of your choice. This can be time-consuming and error-prone.
To simplify writing MQTT client applications, this library encapsulates the MQTT v3 protocol for you. Using this library enables a fully functional MQTT client application to be written in a few lines of code. The information presented here documents the API provided by the Asynchronous MQTT Client library for C.
diff --git a/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_options.html b/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_options.html
index 4325b19c..f33ddfc6 100644
--- a/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_options.html
+++ b/docs/MQTTAsync/html/struct_m_q_t_t_async__connect_options.html
@@ -363,7 +363,7 @@ Data Fields |
An array of null-terminated strings specifying the servers to
-
which the client will connect. Each string takes the form protocol://host:port. protocol must be tcp, ssl, ws or wss. The TLS enabled prefixes (ssl, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a domain name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883.
+
which the client will connect. Each string takes the form protocol://host:port. protocol must be tcp, ssl, tls, ws or wss. The TLS enabled prefixes (ssl, tls, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a domain name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883.
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync.h.3 b/docs/MQTTAsync/man/man3/MQTTAsync.h.3
index 836e49bb..2447fd14 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync.h.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync.h" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync.h" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
@@ -919,13 +919,13 @@ This function creates an MQTT client ready for connection to the specified serve
.br
\fItcp://\fP or \fImqtt://\fP - Insecure TCP
.br
- \fIssl://\fP or \fImqtts://\fP - Encrypted SSL/TLS
+ \fIssl://\fP or \fItls://\fP or \fImqtts://\fP - Encrypted SSL/TLS
.br
\fIws://\fP - Insecure websockets
.br
\fIwss://\fP - Secure web sockets
.br
- The TLS enabled prefixes (ssl, mqtts, wss) are only valid if a TLS version of the library is linked with\&. For \fIhost\fP, you can specify either an IP address or a host name\&. For instance, to connect to a server running on the local machines with the default MQTT port, specify \fItcp://localhost:1883\fP\&.
+ The TLS enabled prefixes (ssl, tls, mqtts, wss) are only valid if a TLS version of the library is linked with\&. For \fIhost\fP, you can specify either an IP address or a host name\&. For instance, to connect to a server running on the local machines with the default MQTT port, specify \fItcp://localhost:1883\fP\&.
.br
\fIclientId\fP The client identifier passed to the server when the client connects to it\&. It is a null-terminated UTF-8 encoded string\&.
.br
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3
index 2b65bd5f..a162de0d 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_SSLOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_SSLOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_SSLOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3 b/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3
index a6b2c243..bbbf00a2 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_connectData.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_connectData" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_connectData" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_connectOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_connectOptions.3
index ffbc011f..cecd1eec 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_connectOptions.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_connectOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_connectOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_connectOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
@@ -174,7 +174,7 @@ An array of null-terminated strings specifying the servers to
.fi
.PP
- which the client will connect\&. Each string takes the form \fIprotocol://host:port\fP\&. \fIprotocol\fP must be \fItcp\fP, \fIssl\fP, \fIws\fP or \fIwss\fP\&. The TLS enabled prefixes (ssl, wss) are only valid if a TLS version of the library is linked with\&. For \fIhost\fP, you can specify either an IP address or a domain name\&. For instance, to connect to a server running on the local machines with the default MQTT port, specify \fItcp://localhost:1883\fP\&.
+ which the client will connect\&. Each string takes the form \fIprotocol://host:port\fP\&. \fIprotocol\fP must be \fItcp\fP, \fIssl\fP, \fItls\fP, \fIws\fP or \fIwss\fP\&. The TLS enabled prefixes (ssl, tls, wss) are only valid if a TLS version of the library is linked with\&. For \fIhost\fP, you can specify either an IP address or a domain name\&. For instance, to connect to a server running on the local machines with the default MQTT port, specify \fItcp://localhost:1883\fP\&.
.SS "int MQTTVersion"
Sets the version of MQTT to be used on the connect\&. MQTTVERSION_DEFAULT (0) = default: start with 3\&.1\&.1, and if that fails, fall back to 3\&.1 MQTTVERSION_3_1 (3) = only try version 3\&.1 MQTTVERSION_3_1_1 (4) = only try version 3\&.1\&.1
.SS "int automaticReconnect"
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_createOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_createOptions.3
index ea6594c0..da3e0e16 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_createOptions.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_createOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_createOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_createOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_disconnectOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_disconnectOptions.3
index 30913486..8485d7d5 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_disconnectOptions.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_disconnectOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_disconnectOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_disconnectOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_failureData.3 b/docs/MQTTAsync/man/man3/MQTTAsync_failureData.3
index f4396077..70d2bd2b 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_failureData.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_failureData.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_failureData" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_failureData" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_failureData5.3 b/docs/MQTTAsync/man/man3/MQTTAsync_failureData5.3
index 111e7bf8..5d9c5aaa 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_failureData5.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_failureData5.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_failureData5" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_failureData5" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_init_options.3 b/docs/MQTTAsync/man/man3/MQTTAsync_init_options.3
index 76b1aa38..f2b17f67 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_init_options.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_init_options.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_init_options" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_init_options" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_message.3 b/docs/MQTTAsync/man/man3/MQTTAsync_message.3
index cdecff88..8d77fd3c 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_message.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_message.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_message" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_message" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_nameValue.3 b/docs/MQTTAsync/man/man3/MQTTAsync_nameValue.3
index 2bc2a940..abfcc47e 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_nameValue.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_nameValue.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_nameValue" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_nameValue" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_responseOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_responseOptions.3
index aa250b46..497c17d8 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_responseOptions.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_responseOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_responseOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_responseOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_successData.3 b/docs/MQTTAsync/man/man3/MQTTAsync_successData.3
index 5753a157..2ebd9132 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_successData.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_successData.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_successData" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_successData" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_successData5.3 b/docs/MQTTAsync/man/man3/MQTTAsync_successData5.3
index 5ccd5c6f..5691f322 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_successData5.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_successData5.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_successData5" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_successData5" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTAsync_willOptions.3 b/docs/MQTTAsync/man/man3/MQTTAsync_willOptions.3
index f1733108..bccc65d7 100644
--- a/docs/MQTTAsync/man/man3/MQTTAsync_willOptions.3
+++ b/docs/MQTTAsync/man/man3/MQTTAsync_willOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTAsync_willOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTAsync_willOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTClientPersistence.h.3 b/docs/MQTTAsync/man/man3/MQTTClientPersistence.h.3
index b4e9949a..c891c705 100644
--- a/docs/MQTTAsync/man/man3/MQTTClientPersistence.h.3
+++ b/docs/MQTTAsync/man/man3/MQTTClientPersistence.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTClientPersistence.h" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClientPersistence.h" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTClient_persistence.3 b/docs/MQTTAsync/man/man3/MQTTClient_persistence.3
index 7539fb1c..7ce9c219 100644
--- a/docs/MQTTAsync/man/man3/MQTTClient_persistence.3
+++ b/docs/MQTTAsync/man/man3/MQTTClient_persistence.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_persistence" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_persistence" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTLenString.3 b/docs/MQTTAsync/man/man3/MQTTLenString.3
index dc167420..b4b3222e 100644
--- a/docs/MQTTAsync/man/man3/MQTTLenString.3
+++ b/docs/MQTTAsync/man/man3/MQTTLenString.3
@@ -1,4 +1,4 @@
-.TH "MQTTLenString" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTLenString" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTProperties.3 b/docs/MQTTAsync/man/man3/MQTTProperties.3
index c2033740..5d285583 100644
--- a/docs/MQTTAsync/man/man3/MQTTProperties.3
+++ b/docs/MQTTAsync/man/man3/MQTTProperties.3
@@ -1,4 +1,4 @@
-.TH "MQTTProperties" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTProperties" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTProperties.h.3 b/docs/MQTTAsync/man/man3/MQTTProperties.h.3
index 6c122781..7538c6b5 100644
--- a/docs/MQTTAsync/man/man3/MQTTProperties.h.3
+++ b/docs/MQTTAsync/man/man3/MQTTProperties.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTProperties.h" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTProperties.h" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTProperty.3 b/docs/MQTTAsync/man/man3/MQTTProperty.3
index 088fc959..aa85b459 100644
--- a/docs/MQTTAsync/man/man3/MQTTProperty.3
+++ b/docs/MQTTAsync/man/man3/MQTTProperty.3
@@ -1,4 +1,4 @@
-.TH "MQTTProperty" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTProperty" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTReasonCodes.h.3 b/docs/MQTTAsync/man/man3/MQTTReasonCodes.h.3
index 687408b8..7572325c 100644
--- a/docs/MQTTAsync/man/man3/MQTTReasonCodes.h.3
+++ b/docs/MQTTAsync/man/man3/MQTTReasonCodes.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTReasonCodes.h" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTReasonCodes.h" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTSubscribeOpts.h.3 b/docs/MQTTAsync/man/man3/MQTTSubscribeOpts.h.3
index 9c3199aa..8593f5ad 100644
--- a/docs/MQTTAsync/man/man3/MQTTSubscribeOpts.h.3
+++ b/docs/MQTTAsync/man/man3/MQTTSubscribeOpts.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTSubscribeOpts.h" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTSubscribeOpts.h" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/MQTTSubscribe_options.3 b/docs/MQTTAsync/man/man3/MQTTSubscribe_options.3
index 542ae3ef..396b2128 100644
--- a/docs/MQTTAsync/man/man3/MQTTSubscribe_options.3
+++ b/docs/MQTTAsync/man/man3/MQTTSubscribe_options.3
@@ -1,4 +1,4 @@
-.TH "MQTTSubscribe_options" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTSubscribe_options" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/_h_t_t_p_proxies.3 b/docs/MQTTAsync/man/man3/_h_t_t_p_proxies.3
index 8a86cea3..f36e824b 100644
--- a/docs/MQTTAsync/man/man3/_h_t_t_p_proxies.3
+++ b/docs/MQTTAsync/man/man3/_h_t_t_p_proxies.3
@@ -1,4 +1,4 @@
-.TH "_h_t_t_p_proxies" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "_h_t_t_p_proxies" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/async.3 b/docs/MQTTAsync/man/man3/async.3
index bc603ea5..d56ad291 100644
--- a/docs/MQTTAsync/man/man3/async.3
+++ b/docs/MQTTAsync/man/man3/async.3
@@ -1,4 +1,4 @@
-.TH "async" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "async" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/auto_reconnect.3 b/docs/MQTTAsync/man/man3/auto_reconnect.3
index 018fc095..6569e263 100644
--- a/docs/MQTTAsync/man/man3/auto_reconnect.3
+++ b/docs/MQTTAsync/man/man3/auto_reconnect.3
@@ -1,4 +1,4 @@
-.TH "auto_reconnect" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "auto_reconnect" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/callbacks.3 b/docs/MQTTAsync/man/man3/callbacks.3
index 2c726904..aea9022a 100644
--- a/docs/MQTTAsync/man/man3/callbacks.3
+++ b/docs/MQTTAsync/man/man3/callbacks.3
@@ -1,4 +1,4 @@
-.TH "callbacks" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "callbacks" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/offline_publish.3 b/docs/MQTTAsync/man/man3/offline_publish.3
index 730fe02b..d6c9aa36 100644
--- a/docs/MQTTAsync/man/man3/offline_publish.3
+++ b/docs/MQTTAsync/man/man3/offline_publish.3
@@ -1,4 +1,4 @@
-.TH "offline_publish" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "offline_publish" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/publish.3 b/docs/MQTTAsync/man/man3/publish.3
index 343332c6..927e3c68 100644
--- a/docs/MQTTAsync/man/man3/publish.3
+++ b/docs/MQTTAsync/man/man3/publish.3
@@ -1,4 +1,4 @@
-.TH "publish" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "publish" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/qos.3 b/docs/MQTTAsync/man/man3/qos.3
index ef873552..56a22eb7 100644
--- a/docs/MQTTAsync/man/man3/qos.3
+++ b/docs/MQTTAsync/man/man3/qos.3
@@ -1,4 +1,4 @@
-.TH "qos" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "qos" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/subscribe.3 b/docs/MQTTAsync/man/man3/subscribe.3
index 7fd4c521..4b20adcb 100644
--- a/docs/MQTTAsync/man/man3/subscribe.3
+++ b/docs/MQTTAsync/man/man3/subscribe.3
@@ -1,4 +1,4 @@
-.TH "subscribe" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "subscribe" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/tracing.3 b/docs/MQTTAsync/man/man3/tracing.3
index 9ec3c703..71099076 100644
--- a/docs/MQTTAsync/man/man3/tracing.3
+++ b/docs/MQTTAsync/man/man3/tracing.3
@@ -1,4 +1,4 @@
-.TH "tracing" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "tracing" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTAsync/man/man3/wildcard.3 b/docs/MQTTAsync/man/man3/wildcard.3
index bd724e56..637b7bab 100644
--- a/docs/MQTTAsync/man/man3/wildcard.3
+++ b/docs/MQTTAsync/man/man3/wildcard.3
@@ -1,4 +1,4 @@
-.TH "wildcard" 3 "Sat Aug 16 2025 14:15:23" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
+.TH "wildcard" 3 "Fri Feb 20 2026 15:12:33" "Paho Asynchronous MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/html/_m_q_t_t_client_8h.html b/docs/MQTTClient/html/_m_q_t_t_client_8h.html
index 7ec3f797..8450155c 100644
--- a/docs/MQTTClient/html/_m_q_t_t_client_8h.html
+++ b/docs/MQTTClient/html/_m_q_t_t_client_8h.html
@@ -1145,10 +1145,10 @@ Functions
| handle | A pointer to an MQTTClient handle. The handle is populated with a valid client reference following a successful return from this function. |
| serverURI | A null-terminated string specifying the server to which the client will connect. It takes the form protocol://host:port. Currently, protocol must be:
tcp:// or mqtt:// - Insecure TCP
- ssl:// or mqtts:// - Encrypted SSL/TLS
+ ssl:// or tls:// or mqtts:// - Encrypted SSL/TLS
ws:// - Insecure websockets
wss:// - Secure web sockets
- The TLS enabled prefixes (ssl, mqtts, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a host name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883. |
+ The TLS enabled prefixes (ssl, tls, mqtts, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a host name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883.
| clientId | The client identifier passed to the server when the client connects to it. It is a null-terminated UTF-8 encoded string. |
| persistence_type | The type of persistence to be used by the client:
MQTTCLIENT_PERSISTENCE_NONE: Use in-memory persistence. If the device or system on which the client is running fails or is switched off, the current state of any in-flight messages is lost and some messages may not be delivered even at QoS1 and QoS2.
diff --git a/docs/MQTTClient/html/_m_q_t_t_client_8h_source.html b/docs/MQTTClient/html/_m_q_t_t_client_8h_source.html
index f9d8a818..b715c073 100644
--- a/docs/MQTTClient/html/_m_q_t_t_client_8h_source.html
+++ b/docs/MQTTClient/html/_m_q_t_t_client_8h_source.html
@@ -76,7 +76,7 @@ $(function() {
Go to the documentation of this file.
-
+
diff --git a/docs/MQTTClient/html/doxygen.css b/docs/MQTTClient/html/doxygen.css
index 4c3d23b2..8339ff52 100644
--- a/docs/MQTTClient/html/doxygen.css
+++ b/docs/MQTTClient/html/doxygen.css
@@ -2442,7 +2442,7 @@ details[open]>summary::before {
html {
---timestamp: 'Sat Aug 16 2025 14:15:23'
+--timestamp: 'Fri Feb 20 2026 15:12:33'
}
span.timestamp { content: ' '; }
span.timestamp:before { content: var(--timestamp); }
diff --git a/docs/MQTTClient/html/index.html b/docs/MQTTClient/html/index.html
index cc211072..f42d1301 100644
--- a/docs/MQTTClient/html/index.html
+++ b/docs/MQTTClient/html/index.html
@@ -76,8 +76,8 @@ $(function() {
An MQTT client library in C.
- © Copyright 2009, 2025 IBM Corp., Ian Craggs and others
- Version 1.3.15
+ © Copyright 2009, 2026 IBM Corp., Ian Craggs and others
+ Version 1.3.16
These pages describe the original more synchronous API which might be considered easier to use. Some of the calls will block. For the new totally asynchronous API where no calls block, which is especially suitable for use in windowed environments, see the MQTT C Client Asynchronous API Documentation. The MQTTClient API is not thread safe, whereas the MQTTAsync API is.
An MQTT client application connects to MQTT-capable servers. A typical client is responsible for collecting information from a telemetry device and publishing the information to the server. It can also subscribe to topics, receive messages, and use this information to control the telemetry device.
MQTT clients implement the published MQTT v3 protocol. You can write your own API to the MQTT protocol using the programming language and platform of your choice. This can be time-consuming and error-prone.
diff --git a/docs/MQTTClient/html/struct_m_q_t_t_client__connect_options.html b/docs/MQTTClient/html/struct_m_q_t_t_client__connect_options.html
index 5012169c..8409e2c2 100644
--- a/docs/MQTTClient/html/struct_m_q_t_t_client__connect_options.html
+++ b/docs/MQTTClient/html/struct_m_q_t_t_client__connect_options.html
@@ -313,7 +313,7 @@ Data Fields |
-
An optional array of null-terminated strings specifying the servers to which the client will connect. Each string takes the form protocol://host:port. protocol must be tcp, ssl, ws or wss. The TLS enabled prefixes (ssl, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a host name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883. If this list is empty (the default), the server URI specified on MQTTClient_create() is used.
+
An optional array of null-terminated strings specifying the servers to which the client will connect. Each string takes the form protocol://host:port. protocol must be tcp, ssl, ws or wss. The TLS enabled prefixes (ssl, tls, wss) are only valid if a TLS version of the library is linked with. For host, you can specify either an IP address or a host name. For instance, to connect to a server running on the local machines with the default MQTT port, specify tcp://localhost:1883. If this list is empty (the default), the server URI specified on MQTTClient_create() is used.
diff --git a/docs/MQTTClient/man/man3/MQTTClient.h.3 b/docs/MQTTClient/man/man3/MQTTClient.h.3
index 126e2d15..2b9ec98d 100644
--- a/docs/MQTTClient/man/man3/MQTTClient.h.3
+++ b/docs/MQTTClient/man/man3/MQTTClient.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient.h" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient.h" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
@@ -590,13 +590,13 @@ This function creates an MQTT client ready for connection to the specified serve
.br
\fItcp://\fP or \fImqtt://\fP - Insecure TCP
.br
- \fIssl://\fP or \fImqtts://\fP - Encrypted SSL/TLS
+ \fIssl://\fP or \fItls://\fP or \fImqtts://\fP - Encrypted SSL/TLS
.br
\fIws://\fP - Insecure websockets
.br
\fIwss://\fP - Secure web sockets
.br
- The TLS enabled prefixes (ssl, mqtts, wss) are only valid if a TLS version of the library is linked with\&. For \fIhost\fP, you can specify either an IP address or a host name\&. For instance, to connect to a server running on the local machines with the default MQTT port, specify \fItcp://localhost:1883\fP\&.
+ The TLS enabled prefixes (ssl, tls, mqtts, wss) are only valid if a TLS version of the library is linked with\&. For \fIhost\fP, you can specify either an IP address or a host name\&. For instance, to connect to a server running on the local machines with the default MQTT port, specify \fItcp://localhost:1883\fP\&.
.br
\fIclientId\fP The client identifier passed to the server when the client connects to it\&. It is a null-terminated UTF-8 encoded string\&.
.br
diff --git a/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3 b/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3
index b784a341..324a39cd 100644
--- a/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3
+++ b/docs/MQTTClient/man/man3/MQTTClientPersistence.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTClientPersistence.h" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClientPersistence.h" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTClient_SSLOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_SSLOptions.3
index 36ef1e29..6188c8a3 100644
--- a/docs/MQTTClient/man/man3/MQTTClient_SSLOptions.3
+++ b/docs/MQTTClient/man/man3/MQTTClient_SSLOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_SSLOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_SSLOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3
index 42d84dd6..e52777f3 100644
--- a/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3
+++ b/docs/MQTTClient/man/man3/MQTTClient_connectOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_connectOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_connectOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
@@ -145,7 +145,7 @@ This is a pointer to an \fBMQTTClient_SSLOptions\fP structure\&. If your applica
.SS "int serverURIcount"
The number of entries in the optional serverURIs array\&. Defaults to 0\&.
.SS "char* const* serverURIs"
-An optional array of null-terminated strings specifying the servers to which the client will connect\&. Each string takes the form \fIprotocol://host:port\fP\&. \fIprotocol\fP must be \fItcp\fP, \fIssl\fP, \fIws\fP or \fIwss\fP\&. The TLS enabled prefixes (ssl, wss) are only valid if a TLS version of the library is linked with\&. For \fIhost\fP, you can specify either an IP address or a host name\&. For instance, to connect to a server running on the local machines with the default MQTT port, specify \fItcp://localhost:1883\fP\&. If this list is empty (the default), the server URI specified on \fBMQTTClient_create()\fP is used\&.
+An optional array of null-terminated strings specifying the servers to which the client will connect\&. Each string takes the form \fIprotocol://host:port\fP\&. \fIprotocol\fP must be \fItcp\fP, \fIssl\fP, \fIws\fP or \fIwss\fP\&. The TLS enabled prefixes (ssl, tls, wss) are only valid if a TLS version of the library is linked with\&. For \fIhost\fP, you can specify either an IP address or a host name\&. For instance, to connect to a server running on the local machines with the default MQTT port, specify \fItcp://localhost:1883\fP\&. If this list is empty (the default), the server URI specified on \fBMQTTClient_create()\fP is used\&.
.SS "int MQTTVersion"
Sets the version of MQTT to be used on the connect\&. MQTTVERSION_DEFAULT (0) = default: start with 3\&.1\&.1, and if that fails, fall back to 3\&.1 MQTTVERSION_3_1 (3) = only try version 3\&.1 MQTTVERSION_3_1_1 (4) = only try version 3\&.1\&.1 MQTTVERSION_5 (5) = only try version 5\&.0
diff --git a/docs/MQTTClient/man/man3/MQTTClient_createOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_createOptions.3
index b9d57ab2..c1a8decf 100644
--- a/docs/MQTTClient/man/man3/MQTTClient_createOptions.3
+++ b/docs/MQTTClient/man/man3/MQTTClient_createOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_createOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_createOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTClient_init_options.3 b/docs/MQTTClient/man/man3/MQTTClient_init_options.3
index 17a7ccdf..2d2bc941 100644
--- a/docs/MQTTClient/man/man3/MQTTClient_init_options.3
+++ b/docs/MQTTClient/man/man3/MQTTClient_init_options.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_init_options" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_init_options" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTClient_message.3 b/docs/MQTTClient/man/man3/MQTTClient_message.3
index d628b17f..492f42b0 100644
--- a/docs/MQTTClient/man/man3/MQTTClient_message.3
+++ b/docs/MQTTClient/man/man3/MQTTClient_message.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_message" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_message" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTClient_nameValue.3 b/docs/MQTTClient/man/man3/MQTTClient_nameValue.3
index 0a412329..d43087a1 100644
--- a/docs/MQTTClient/man/man3/MQTTClient_nameValue.3
+++ b/docs/MQTTClient/man/man3/MQTTClient_nameValue.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_nameValue" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_nameValue" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTClient_persistence.3 b/docs/MQTTClient/man/man3/MQTTClient_persistence.3
index a1139ade..a96a269f 100644
--- a/docs/MQTTClient/man/man3/MQTTClient_persistence.3
+++ b/docs/MQTTClient/man/man3/MQTTClient_persistence.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_persistence" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_persistence" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTClient_willOptions.3 b/docs/MQTTClient/man/man3/MQTTClient_willOptions.3
index 304e5075..28b2731a 100644
--- a/docs/MQTTClient/man/man3/MQTTClient_willOptions.3
+++ b/docs/MQTTClient/man/man3/MQTTClient_willOptions.3
@@ -1,4 +1,4 @@
-.TH "MQTTClient_willOptions" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTClient_willOptions" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTLenString.3 b/docs/MQTTClient/man/man3/MQTTLenString.3
index 10ffb117..cd2d492c 100644
--- a/docs/MQTTClient/man/man3/MQTTLenString.3
+++ b/docs/MQTTClient/man/man3/MQTTLenString.3
@@ -1,4 +1,4 @@
-.TH "MQTTLenString" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTLenString" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTProperties.3 b/docs/MQTTClient/man/man3/MQTTProperties.3
index 22108878..1b974ae0 100644
--- a/docs/MQTTClient/man/man3/MQTTProperties.3
+++ b/docs/MQTTClient/man/man3/MQTTProperties.3
@@ -1,4 +1,4 @@
-.TH "MQTTProperties" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTProperties" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTProperties.h.3 b/docs/MQTTClient/man/man3/MQTTProperties.h.3
index bc6f78ab..84dfc168 100644
--- a/docs/MQTTClient/man/man3/MQTTProperties.h.3
+++ b/docs/MQTTClient/man/man3/MQTTProperties.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTProperties.h" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTProperties.h" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTProperty.3 b/docs/MQTTClient/man/man3/MQTTProperty.3
index 00090c38..522d6f4c 100644
--- a/docs/MQTTClient/man/man3/MQTTProperty.3
+++ b/docs/MQTTClient/man/man3/MQTTProperty.3
@@ -1,4 +1,4 @@
-.TH "MQTTProperty" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTProperty" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTReasonCodes.h.3 b/docs/MQTTClient/man/man3/MQTTReasonCodes.h.3
index cca35deb..d6ac72be 100644
--- a/docs/MQTTClient/man/man3/MQTTReasonCodes.h.3
+++ b/docs/MQTTClient/man/man3/MQTTReasonCodes.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTReasonCodes.h" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTReasonCodes.h" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTResponse.3 b/docs/MQTTClient/man/man3/MQTTResponse.3
index ee4a35f2..5a8a6ceb 100644
--- a/docs/MQTTClient/man/man3/MQTTResponse.3
+++ b/docs/MQTTClient/man/man3/MQTTResponse.3
@@ -1,4 +1,4 @@
-.TH "MQTTResponse" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTResponse" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTSubscribeOpts.h.3 b/docs/MQTTClient/man/man3/MQTTSubscribeOpts.h.3
index 39b5877a..6be7a698 100644
--- a/docs/MQTTClient/man/man3/MQTTSubscribeOpts.h.3
+++ b/docs/MQTTClient/man/man3/MQTTSubscribeOpts.h.3
@@ -1,4 +1,4 @@
-.TH "MQTTSubscribeOpts.h" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTSubscribeOpts.h" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/MQTTSubscribe_options.3 b/docs/MQTTClient/man/man3/MQTTSubscribe_options.3
index b3f955a9..21bb1e26 100644
--- a/docs/MQTTClient/man/man3/MQTTSubscribe_options.3
+++ b/docs/MQTTClient/man/man3/MQTTSubscribe_options.3
@@ -1,4 +1,4 @@
-.TH "MQTTSubscribe_options" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "MQTTSubscribe_options" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/_h_t_t_p_proxies.3 b/docs/MQTTClient/man/man3/_h_t_t_p_proxies.3
index 78bafe6c..d06b7f5f 100644
--- a/docs/MQTTClient/man/man3/_h_t_t_p_proxies.3
+++ b/docs/MQTTClient/man/man3/_h_t_t_p_proxies.3
@@ -1,4 +1,4 @@
-.TH "_h_t_t_p_proxies" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "_h_t_t_p_proxies" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/async.3 b/docs/MQTTClient/man/man3/async.3
index 5dce24fe..57e87869 100644
--- a/docs/MQTTClient/man/man3/async.3
+++ b/docs/MQTTClient/man/man3/async.3
@@ -1,4 +1,4 @@
-.TH "async" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "async" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/callbacks.3 b/docs/MQTTClient/man/man3/callbacks.3
index 411b518a..77d6ca06 100644
--- a/docs/MQTTClient/man/man3/callbacks.3
+++ b/docs/MQTTClient/man/man3/callbacks.3
@@ -1,4 +1,4 @@
-.TH "callbacks" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "callbacks" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/pubasync.3 b/docs/MQTTClient/man/man3/pubasync.3
index 3ecc048c..4802a95e 100644
--- a/docs/MQTTClient/man/man3/pubasync.3
+++ b/docs/MQTTClient/man/man3/pubasync.3
@@ -1,4 +1,4 @@
-.TH "pubasync" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "pubasync" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/pubsync.3 b/docs/MQTTClient/man/man3/pubsync.3
index 07c797e1..c9bb1d75 100644
--- a/docs/MQTTClient/man/man3/pubsync.3
+++ b/docs/MQTTClient/man/man3/pubsync.3
@@ -1,4 +1,4 @@
-.TH "pubsync" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "pubsync" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/qos.3 b/docs/MQTTClient/man/man3/qos.3
index c62d01f1..39d9ea58 100644
--- a/docs/MQTTClient/man/man3/qos.3
+++ b/docs/MQTTClient/man/man3/qos.3
@@ -1,4 +1,4 @@
-.TH "qos" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "qos" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/subasync.3 b/docs/MQTTClient/man/man3/subasync.3
index 5fc19901..344d0e4e 100644
--- a/docs/MQTTClient/man/man3/subasync.3
+++ b/docs/MQTTClient/man/man3/subasync.3
@@ -1,4 +1,4 @@
-.TH "subasync" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "subasync" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/tracing.3 b/docs/MQTTClient/man/man3/tracing.3
index af38823c..9d9556f5 100644
--- a/docs/MQTTClient/man/man3/tracing.3
+++ b/docs/MQTTClient/man/man3/tracing.3
@@ -1,4 +1,4 @@
-.TH "tracing" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "tracing" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
diff --git a/docs/MQTTClient/man/man3/wildcard.3 b/docs/MQTTClient/man/man3/wildcard.3
index 536b0d78..c384ed09 100644
--- a/docs/MQTTClient/man/man3/wildcard.3
+++ b/docs/MQTTClient/man/man3/wildcard.3
@@ -1,4 +1,4 @@
-.TH "wildcard" 3 "Sat Aug 16 2025 14:15:23" "Paho MQTT C Client Library" \" -*- nroff -*-
+.TH "wildcard" 3 "Fri Feb 20 2026 15:12:33" "Paho MQTT C Client Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME