Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
c089c94
[nrf fromtree] net: mqtt: Add Kconfig to select maximum supported MQT…
rlubos Dec 19, 2024
c47caff
[nrf fromtree] tests: net: lib: mqtt: v3_1_1: Add test variant with M…
rlubos Dec 19, 2024
0cab173
[nrf fromtree] net: mqtt: Fix helper macro for encoded binary data le…
rlubos Dec 19, 2024
acb6bf9
[nrf fromtree] net: mqtt: Add MQTT 5.0 support for CONNECT
rlubos Dec 19, 2024
62f9668
[nrf fromtree] net: mqtt: Add MQTT 5.0 support for CONNACK
rlubos Dec 19, 2024
209924c
[nrf fromtree] net: mqtt: Add MQTT 5.0 support for PUBLISH
rlubos Dec 19, 2024
1f9534b
[nrf fromtree] net: mqtt: Add MQTT 5.0 support for PUBLISH ACKs
rlubos Dec 19, 2024
bb59d85
[nrf fromtree] net: mqtt: Add MQTT 5.0 support for SUBSCRIBE/UNSUBSCRIBE
rlubos Dec 19, 2024
b1610da
[nrf fromtree] net: mqtt: Add MQTT 5.0 support for SUBACK/UNSUBACK
rlubos Dec 19, 2024
d7fc633
[nrf fromtree] net: mqtt: Add MQTT 5.0 support for DISCONNECT
rlubos Dec 19, 2024
58da89e
[nrf fromtree] net: mqtt: Add support for MQTT 5.0 AUTH packet
rlubos Dec 19, 2024
183e076
[nrf fromtree] net: mqtt: Add support for MQTT 5.0 topic aliases
rlubos Mar 7, 2025
94879f1
[nrf fromtree] net: mqtt: Improve disconnect error notification for M…
rlubos Mar 7, 2025
420ddbd
[nrf fromtree] tests: net: mqtt: Add MQTT 5.0 packet encoder/decoder …
rlubos Mar 7, 2025
b948950
[nrf fromtree] net: mqtt: Make sure MQTT 5.0 is visible in API docume…
rlubos Mar 19, 2025
2f7db51
[nrf fromtree] doc: mqtt: Add mention of MQTT 5.0 support
rlubos Mar 19, 2025
6b188dc
[nrf fromlist] net: lib: mqtt: Add extra MQTT 5.0 ifdefs to prevent c…
rlubos Mar 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/connectivity/networking/api/mqtt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For more information about the protocol itself, see http://mqtt.org/.
Zephyr provides an MQTT client library built on top of BSD sockets API. The
library can be enabled with :kconfig:option:`CONFIG_MQTT_LIB` Kconfig option and
is configurable at a per-client basis, with support for MQTT versions
3.1.0 and 3.1.1. The Zephyr MQTT implementation can be used with either plain
3.1.0, 3.1.1 and 5.0. The Zephyr MQTT implementation can be used with either plain
sockets communicating over TCP, or with secure sockets communicating over
TLS. See :ref:`bsd_sockets_interface` for more information about Zephyr sockets.

Expand Down
Loading