Lines Matching full:an
13 MQTT (Message Queuing Telemetry Transport) is an application layer protocol
18 Zephyr provides an MQTT client library built on top of BSD sockets API. The
25 MQTT clients require an MQTT server to connect to. Such a server, called an MQTT Broker,
34 To create an MQTT client, a client context structure and buffers need to be
56 An MQTT client library will notify MQTT events to the application through a
72 used. An example configuration for TCP transport is shown below:
96 establish a TCP/TLS connection, and send an ``MQTT CONNECT`` message.
125 After the connection is established, an application needs to call ``mqtt_input``
127 the connection. If an MQTT message is received, an MQTT callback function will
128 be called and an appropriate event notified.
165 An example of how to use TLS with MQTT is also present in