|
coreMQTT
v1.1.1
MQTT 3.1.1 Client Library
|
|
User-facing functions of the MQTT 3.1.1 library.
More...
Go to the source code of this file.
|
| typedef uint32_t(* | MQTTGetCurrentTimeFunc_t) (void) |
| | Application provided function to query the current time in milliseconds. More...
|
| |
| typedef void(* | MQTTEventCallback_t) (struct MQTTContext *pContext, struct MQTTPacketInfo *pPacketInfo, struct MQTTDeserializedInfo *pDeserializedInfo) |
| | Application callback for receiving incoming publishes and incoming acks. More...
|
| |
|
| enum | MQTTConnectionStatus_t { MQTTNotConnected,
MQTTConnected
} |
| | Values indicating if an MQTT connection exists. More...
|
| |
| enum | MQTTPublishState_t {
MQTTStateNull = 0,
MQTTPublishSend,
MQTTPubAckSend,
MQTTPubRecSend,
MQTTPubRelSend,
MQTTPubCompSend,
MQTTPubAckPending,
MQTTPubRecPending,
MQTTPubRelPending,
MQTTPubCompPending,
MQTTPublishDone
} |
| | The state of QoS 1 or QoS 2 MQTT publishes, used in the state engine. More...
|
| |
| enum | MQTTPubAckType_t { MQTTPuback,
MQTTPubrec,
MQTTPubrel,
MQTTPubcomp
} |
| | Packet types used in acknowledging QoS 1 or QoS 2 publishes. More...
|
| |
| enum | MQTTSubAckStatus_t { MQTTSubAckSuccessQos0 = 0x00,
MQTTSubAckSuccessQos1 = 0x01,
MQTTSubAckSuccessQos2 = 0x02,
MQTTSubAckFailure = 0x80
} |
| | The status codes in the SUBACK response to a subscription request. More...
|
| |
|
| MQTTStatus_t | MQTT_Init (MQTTContext_t *pContext, const TransportInterface_t *pTransportInterface, MQTTGetCurrentTimeFunc_t getTimeFunction, MQTTEventCallback_t userCallback, const MQTTFixedBuffer_t *pNetworkBuffer) |
| | Initialize an MQTT context. More...
|
| |
| MQTTStatus_t | MQTT_Connect (MQTTContext_t *pContext, const MQTTConnectInfo_t *pConnectInfo, const MQTTPublishInfo_t *pWillInfo, uint32_t timeoutMs, bool *pSessionPresent) |
| | Establish an MQTT session. More...
|
| |
| MQTTStatus_t | MQTT_Subscribe (MQTTContext_t *pContext, const MQTTSubscribeInfo_t *pSubscriptionList, size_t subscriptionCount, uint16_t packetId) |
| | Sends MQTT SUBSCRIBE for the given list of topic filters to the broker. More...
|
| |
| MQTTStatus_t | MQTT_Publish (MQTTContext_t *pContext, const MQTTPublishInfo_t *pPublishInfo, uint16_t packetId) |
| | Publishes a message to the given topic name. More...
|
| |
| MQTTStatus_t | MQTT_Ping (MQTTContext_t *pContext) |
| | Sends an MQTT PINGREQ to broker. More...
|
| |
| MQTTStatus_t | MQTT_Unsubscribe (MQTTContext_t *pContext, const MQTTSubscribeInfo_t *pSubscriptionList, size_t subscriptionCount, uint16_t packetId) |
| | Sends MQTT UNSUBSCRIBE for the given list of topic filters to the broker. More...
|
| |
| MQTTStatus_t | MQTT_Disconnect (MQTTContext_t *pContext) |
| | Disconnect an MQTT session. More...
|
| |
| MQTTStatus_t | MQTT_ProcessLoop (MQTTContext_t *pContext, uint32_t timeoutMs) |
| | Loop to receive packets from the transport interface. Handles keep alive. More...
|
| |
| MQTTStatus_t | MQTT_ReceiveLoop (MQTTContext_t *pContext, uint32_t timeoutMs) |
| | Loop to receive packets from the transport interface. Does not handle keep alive. More...
|
| |
| uint16_t | MQTT_GetPacketId (MQTTContext_t *pContext) |
| | Get a packet ID that is valid according to the MQTT 3.1.1 spec. More...
|
| |
| MQTTStatus_t | MQTT_MatchTopic (const char *pTopicName, const uint16_t topicNameLength, const char *pTopicFilter, const uint16_t topicFilterLength, bool *pIsMatch) |
| | A utility function that determines whether the passed topic filter and topic name match according to the MQTT 3.1.1 protocol specification. More...
|
| |
| MQTTStatus_t | MQTT_GetSubAckStatusCodes (const MQTTPacketInfo_t *pSubackPacket, uint8_t **pPayloadStart, size_t *pPayloadSize) |
| | Parses the payload of an MQTT SUBACK packet that contains status codes corresponding to topic filter subscription requests from the original subscribe packet. More...
|
| |
| const char * | MQTT_Status_strerror (MQTTStatus_t status) |
| | Error code to string conversion for MQTT statuses. More...
|
| |
User-facing functions of the MQTT 3.1.1 library.
◆ MQTT_Init()
Initialize an MQTT context.
This function must be called on a MQTTContext_t before any other function.
- Note
- The MQTTGetCurrentTimeFunc_t function for querying time must be defined. If there is no time implementation, it is the responsibility of the application to provide a dummy function to always return 0, provide 0 timeouts for all calls to MQTT_Connect, MQTT_ProcessLoop, and MQTT_ReceiveLoop and configure the MQTT_RECV_POLLING_TIMEOUT_MS and MQTT_SEND_RETRY_TIMEOUT_MS configurations to be 0. This will result in loop functions running for a single iteration, and MQTT_Connect relying on MQTT_MAX_CONNACK_RECEIVE_RETRY_COUNT to receive the CONNACK packet.
- Parameters
-
| [in] | pContext | The context to initialize. |
| [in] | pTransportInterface | The transport interface to use with the context. |
| [in] | getTimeFunction | The time utility function to use with the context. |
| [in] | userCallback | The user callback to use with the context to notify about incoming packet events. |
| [in] | pNetworkBuffer | Network buffer provided for the context. |
- Returns
- MQTTBadParameter if invalid parameters are passed; MQTTSuccess otherwise.
Example
uint32_t getTimeStampMs();
void eventCallback(
);
int32_t networkSend(
NetworkContext_t * pContext,
const void * pBuffer,
size_t bytes );
int32_t networkRecv(
NetworkContext_t * pContext,
void * pBuffer,
size_t bytes );
uint8_t buffer[ 1024 ];
memset( (
void * ) &mqttContext, 0x00,
sizeof(
MQTTContext_t ) );
transport.
send = networkSend;
transport.
recv = networkRecv;
status =
MQTT_Init( &mqttContext, &transport, getTimeStampMs, eventCallback, &fixedBuffer );
{
}
◆ MQTT_Connect()
Establish an MQTT session.
This function will send MQTT CONNECT packet and receive a CONNACK packet. The send and receive from the network is done through the transport interface.
The maximum time this function waits for a CONNACK is decided in one of the following ways:
- If
timeoutMs is greater than 0: MQTTContext_t.getTime is used to ensure that the function does not wait more than timeoutMs for CONNACK.
- If
timeoutMs is 0: The network receive for CONNACK is retried up to the number of times configured by MQTT_MAX_CONNACK_RECEIVE_RETRY_COUNT.
- Note
- If a dummy MQTTGetCurrentTimeFunc_t was passed to MQTT_Init, then a timeout value of 0 MUST be passed to the API, and the MQTT_RECV_POLLING_TIMEOUT_MS and MQTT_SEND_RETRY_TIMEOUT_MS timeout configurations MUST be set to 0.
- Parameters
-
| [in] | pContext | Initialized MQTT context. |
| [in] | pConnectInfo | MQTT CONNECT packet information. |
| [in] | pWillInfo | Last Will and Testament. Pass NULL if Last Will and Testament is not used. |
| [in] | timeoutMs | Maximum time in milliseconds to wait for a CONNACK packet. A zero timeout makes use of the retries for receiving CONNACK as configured with MQTT_MAX_CONNACK_RECEIVE_RETRY_COUNT. |
| [out] | pSessionPresent | Whether a previous session was present. Only relevant if not establishing a clean session. |
- Returns
- MQTTNoMemory if the MQTTContext_t.networkBuffer is too small to hold the MQTT packet; MQTTBadParameter if invalid parameters are passed; MQTTSendFailed if transport send failed; MQTTRecvFailed if transport receive failed for CONNACK; MQTTNoDataAvailable if no data available to receive in transport until the
timeoutMs for CONNACK; MQTTSuccess otherwise.
- Note
- This API may spend more time than provided in the timeoutMS parameters in certain conditions as listed below:
- Timeouts are incorrectly configured - If the timeoutMS is less than the transport receive timeout and if a CONNACK packet is not received within the transport receive timeout, the API will spend the transport receive timeout (which is more time than the timeoutMs). It is the case of incorrect timeout configuration as the timeoutMs parameter passed to this API must be greater than the transport receive timeout. Please refer to the transport interface documentation for more details about timeout configurations.
- Partial CONNACK packet is received right before the expiry of the timeout - It is possible that first two bytes of CONNACK packet (packet type and remaining length) are received right before the expiry of the timeoutMS. In that case, the API makes one more network receive call in an attempt to receive the remaining 2 bytes. In the worst case, it can happen that the remaining 2 bytes are never received and this API will end up spending timeoutMs + transport receive timeout.
Example
bool sessionPresent;
status =
MQTT_Connect( pContext, &connectInfo, &willInfo, 100, &sessionPresent );
{
assert( sessionPresent == false );
}
◆ MQTT_Subscribe()
Sends MQTT SUBSCRIBE for the given list of topic filters to the broker.
- Parameters
-
| [in] | pContext | Initialized MQTT context. |
| [in] | pSubscriptionList | List of MQTT subscription info. |
| [in] | subscriptionCount | The number of elements in pSubscriptionList. |
| [in] | packetId | Packet ID generated by MQTT_GetPacketId. |
- Returns
- MQTTNoMemory if the MQTTContext_t.networkBuffer is too small to hold the MQTT packet; MQTTBadParameter if invalid parameters are passed; MQTTSendFailed if transport write failed; MQTTSuccess otherwise.
Example
uint16_t packetId;
const char * filters[ NUMBER_OF_SUBSCRIPTIONS ];
for( int i = 0; i < NUMBER_OF_SUBSCRIPTIONS; i++ )
{
}
status =
MQTT_Subscribe( pContext, &subscriptionList[ 0 ], NUMBER_OF_SUBSCRIPTIONS, packetId );
{
}
◆ MQTT_Publish()
Publishes a message to the given topic name.
- Parameters
-
| [in] | pContext | Initialized MQTT context. |
| [in] | pPublishInfo | MQTT PUBLISH packet parameters. |
| [in] | packetId | packet ID generated by MQTT_GetPacketId. |
- Returns
- MQTTNoMemory if pBuffer is too small to hold the MQTT packet; MQTTBadParameter if invalid parameters are passed; MQTTSendFailed if transport write failed; MQTTSuccess otherwise.
Example
◆ MQTT_Ping()
Sends an MQTT PINGREQ to broker.
- Parameters
-
| [in] | pContext | Initialized and connected MQTT context. |
- Returns
- MQTTNoMemory if pBuffer is too small to hold the MQTT packet; MQTTBadParameter if invalid parameters are passed; MQTTSendFailed if transport write failed; MQTTSuccess otherwise.
◆ MQTT_Unsubscribe()
Sends MQTT UNSUBSCRIBE for the given list of topic filters to the broker.
- Parameters
-
| [in] | pContext | Initialized MQTT context. |
| [in] | pSubscriptionList | List of MQTT subscription info. |
| [in] | subscriptionCount | The number of elements in pSubscriptionList. |
| [in] | packetId | packet ID generated by MQTT_GetPacketId. |
- Returns
- MQTTNoMemory if the MQTTContext_t.networkBuffer is too small to hold the MQTT packet; MQTTBadParameter if invalid parameters are passed; MQTTSendFailed if transport write failed; MQTTSuccess otherwise.
Example
uint16_t packetId;
const char * filters[ NUMBER_OF_SUBSCRIPTIONS ];
for( int i = 0; i < NUMBER_OF_SUBSCRIPTIONS; i++ )
{
}
status =
MQTT_Unsubscribe( pContext, &unsubscribeList[ 0 ], NUMBER_OF_SUBSCRIPTIONS, packetId );
{
}
◆ MQTT_Disconnect()
◆ MQTT_ProcessLoop()
Loop to receive packets from the transport interface. Handles keep alive.
- Note
- Passing a timeout value of 0 will run the loop for a single iteration.
-
If a dummy timer function, MQTTGetCurrentTimeFunc_t, is passed to the library, then the keep-alive mechanism is not supported by the MQTT_ProcessLoop API. In that case, the MQTT_ReceiveLoop API function should be used instead.
- Parameters
-
| [in] | pContext | Initialized and connected MQTT context. |
| [in] | timeoutMs | Minimum time in milliseconds that the receive loop will run, unless an error occurs. |
- Note
- Calling this function blocks the calling context for a time period that depends on the passed
timeoutMs, the configuration macros, MQTT_RECV_POLLING_TIMEOUT_MS and MQTT_SEND_RETRY_TIMEOUT_MS, and the underlying transport interface implementation timeouts, unless an error occurs. The blocking period also depends on the execution time of the MQTTEventCallback_t callback supplied to the library. It is recommended that the supplied MQTTEventCallback_t callback does not contain blocking operations to prevent potential non-deterministic blocking period of the MQTT_ProcessLoop API call.
- Returns
- MQTTBadParameter if context is NULL; MQTTRecvFailed if a network error occurs during reception; MQTTSendFailed if a network error occurs while sending an ACK or PINGREQ; MQTTBadResponse if an invalid packet is received; MQTTKeepAliveTimeout if the server has not sent a PINGRESP before MQTT_PINGRESP_TIMEOUT_MS milliseconds; MQTTIllegalState if an incoming QoS 1/2 publish or ack causes an invalid transition for the internal state machine; MQTTSuccess on success.
Example
uint32_t timeoutMs = 100;
while( true )
{
{
}
else
{
}
}
◆ MQTT_ReceiveLoop()
Loop to receive packets from the transport interface. Does not handle keep alive.
- Note
- Passing a timeout value of 0 will run the loop for a single iteration. If a dummy MQTTGetCurrentTimeFunc_t was passed to MQTT_Init, then the timeout value passed to the API MUST be 0, and the MQTT_RECV_POLLING_TIMEOUT_MS and MQTT_SEND_RETRY_TIMEOUT_MS timeout configurations MUST be set to 0.
- Parameters
-
| [in] | pContext | Initialized and connected MQTT context. |
| [in] | timeoutMs | Minimum time in milliseconds that the receive loop will run, unless an error occurs. |
- Note
- Calling this function blocks the calling context for a time period that depends on the passed
timeoutMs, the configuration macros, MQTT_RECV_POLLING_TIMEOUT_MS and MQTT_SEND_RETRY_TIMEOUT_MS, and the underlying transport interface implementation timeouts, unless an error occurs. The blocking period also depends on the execution time of the MQTTEventCallback_t callback supplied to the library. It is recommended that the supplied MQTTEventCallback_t callback does not contain blocking operations to prevent potential non-deterministic blocking period of the MQTT_ReceiveLoop API call.
- Returns
- MQTTBadParameter if context is NULL; MQTTRecvFailed if a network error occurs during reception; MQTTSendFailed if a network error occurs while sending an ACK or PINGREQ; MQTTBadResponse if an invalid packet is received; MQTTIllegalState if an incoming QoS 1/2 publish or ack causes an invalid transition for the internal state machine; MQTTSuccess on success.
Example
uint32_t timeoutMs = 100;
uint32_t keepAliveMs = 60 * 1000;
while( true )
{
{
}
else
{
{
}
}
}
◆ MQTT_GetPacketId()
Get a packet ID that is valid according to the MQTT 3.1.1 spec.
- Parameters
-
| [in] | pContext | Initialized MQTT context. |
- Returns
- A non-zero number.
◆ MQTT_MatchTopic()
| MQTTStatus_t MQTT_MatchTopic |
( |
const char * |
pTopicName, |
|
|
const uint16_t |
topicNameLength, |
|
|
const char * |
pTopicFilter, |
|
|
const uint16_t |
topicFilterLength, |
|
|
bool * |
pIsMatch |
|
) |
| |
A utility function that determines whether the passed topic filter and topic name match according to the MQTT 3.1.1 protocol specification.
- Parameters
-
| [in] | pTopicName | The topic name to check. |
| [in] | topicNameLength | Length of the topic name. |
| [in] | pTopicFilter | The topic filter to check. |
| [in] | topicFilterLength | Length of topic filter. |
| [out] | pIsMatch | This is filled with the whether there exists a match or not. |
- Note
- The API assumes that the passed topic name is valid to meet the requirements of the MQTT 3.1.1 specification. Invalid topic names (for example, containing wildcard characters) should not be passed to the function. Also, the API checks validity of topic filter for wildcard characters ONLY if the passed topic name and topic filter do not have an exact string match.
- Returns
- Returns one of the following:
Example
const char * pTopic = "topic/match/1";
const char * pFilter = "topic/#";
bool match = false;
status =
MQTT_MatchTopic( pTopic, strlen( pTopic ), pFilter, strlen( pFilter ), &match );
if( match )
{
}
◆ MQTT_GetSubAckStatusCodes()
Parses the payload of an MQTT SUBACK packet that contains status codes corresponding to topic filter subscription requests from the original subscribe packet.
Each return code in the SUBACK packet corresponds to a topic filter in the SUBSCRIBE Packet being acknowledged. The status codes can be one of the following:
- 0x00 - Success - Maximum QoS 0
- 0x01 - Success - Maximum QoS 1
- 0x02 - Success - Maximum QoS 2
- 0x80 - Failure Refer to MQTTSubAckStatus_t for the status codes.
- Parameters
-
| [in] | pSubackPacket | The SUBACK packet whose payload is to be parsed. |
| [out] | pPayloadStart | This is populated with the starting address of the payload (or return codes for topic filters) in the SUBACK packet. |
| [out] | pPayloadSize | This is populated with the size of the payload in the SUBACK packet. It represents the number of topic filters whose SUBACK status is present in the packet. |
- Returns
- Returns one of the following:
Example
void eventCallback(
)
{
uint8_t * pCodes;
size_t numCodes;
{
assert( numCodes == NUMBER_OF_SUBSCRIPTIONS );
for( int i = 0; i < numCodes; i++ )
{
{
}
else
{
if( pSubscribes[ i ].qos != pCodes[ i ] )
{
"Requested QoS %u, but granted QoS %u for %s",
pSubscribes[ i ].qos, pCodes[ i ], pSubscribes[ i ].pTopicFilter
) );
}
}
}
}
}
◆ MQTT_Status_strerror()
Error code to string conversion for MQTT statuses.
- Parameters
-
| [in] | status | The status to convert to a string. |
- Returns
- The string representation of the status.
MQTT SUBSCRIBE packet parameters.
Definition: core_mqtt_serializer.h:181
uint16_t topicNameLength
Length of topic name.
Definition: core_mqtt_serializer.h:227
MQTT CONNECT packet parameters.
Definition: core_mqtt_serializer.h:134
MQTTStatus_t MQTT_Subscribe(MQTTContext_t *pContext, const MQTTSubscribeInfo_t *pSubscriptionList, size_t subscriptionCount, uint16_t packetId)
Sends MQTT SUBSCRIBE for the given list of topic filters to the broker.
Definition: core_mqtt.c:1847
uint8_t * pBuffer
Pointer to buffer.
Definition: core_mqtt_serializer.h:125
MQTTStatus_t MQTT_ProcessLoop(MQTTContext_t *pContext, uint32_t timeoutMs)
Loop to receive packets from the transport interface. Handles keep alive.
Definition: core_mqtt.c:2158
MQTTStatus_t MQTT_GetSubAckStatusCodes(const MQTTPacketInfo_t *pSubackPacket, uint8_t **pPayloadStart, size_t *pPayloadSize)
Parses the payload of an MQTT SUBACK packet that contains status codes corresponding to topic filter ...
Definition: core_mqtt.c:2364
MQTT incoming packet parameters.
Definition: core_mqtt_serializer.h:245
MQTTStatus_t MQTT_Connect(MQTTContext_t *pContext, const MQTTConnectInfo_t *pConnectInfo, const MQTTPublishInfo_t *pWillInfo, uint32_t timeoutMs, bool *pSessionPresent)
Establish an MQTT session.
Definition: core_mqtt.c:1750
const char * pTopicFilter
Topic filter to subscribe to.
Definition: core_mqtt_serializer.h:190
struct NetworkContext NetworkContext_t
The NetworkContext is an incomplete type. An implementation of this interface must define struct Netw...
Definition: transport_interface.h:183
Buffer passed to MQTT library.
Definition: core_mqtt_serializer.h:124
MQTTStatus_t MQTT_Ping(MQTTContext_t *pContext)
Sends an MQTT PINGREQ to broker.
Definition: core_mqtt.c:1981
uint16_t MQTT_GetPacketId(MQTTContext_t *pContext)
Get a packet ID that is valid according to the MQTT 3.1.1 spec.
Definition: core_mqtt.c:2270
const void * pPayload
Message payload.
Definition: core_mqtt_serializer.h:232
size_t size
Size of buffer.
Definition: core_mqtt_serializer.h:126
uint32_t lastPacketTime
Timestamp of the last packet sent by the library.
Definition: core_mqtt.h:207
#define LogWarn(message)
Macro that is called in the MQTT library for logging "Warning" level messages.
Definition: core_mqtt_config_defaults.h:203
TransportSend_t send
Definition: transport_interface.h:248
const char * pClientIdentifier
MQTT client identifier. Must be unique per client.
Definition: core_mqtt_serializer.h:148
MQTTStatus_t
Return codes from MQTT functions.
Definition: core_mqtt_serializer.h:91
uint16_t keepAliveSeconds
MQTT keep alive period.
Definition: core_mqtt_serializer.h:143
const char * pPassword
MQTT password. Set to NULL if not used.
Definition: core_mqtt_serializer.h:168
MQTTStatus_t MQTT_MatchTopic(const char *pTopicName, const uint16_t topicNameLength, const char *pTopicFilter, const uint16_t topicFilterLength, bool *pIsMatch)
A utility function that determines whether the passed topic filter and topic name match according to ...
Definition: core_mqtt.c:2295
MQTTStatus_t MQTT_Unsubscribe(MQTTContext_t *pContext, const MQTTSubscribeInfo_t *pSubscriptionList, size_t subscriptionCount, uint16_t packetId)
Sends MQTT UNSUBSCRIBE for the given list of topic filters to the broker.
Definition: core_mqtt.c:2042
uint16_t passwordLength
Length of MQTT password. Set to 0 if not used.
Definition: core_mqtt_serializer.h:173
MQTTStatus_t MQTT_ReceiveLoop(MQTTContext_t *pContext, uint32_t timeoutMs)
Loop to receive packets from the transport interface. Does not handle keep alive.
Definition: core_mqtt.c:2215
const char * pTopicName
Topic name on which the message is published.
Definition: core_mqtt_serializer.h:222
MQTTGetCurrentTimeFunc_t getTime
Function used to get millisecond timestamps.
Definition: core_mqtt.h:197
MQTTStatus_t MQTT_Publish(MQTTContext_t *pContext, const MQTTPublishInfo_t *pPublishInfo, uint16_t packetId)
Publishes a message to the given topic name.
Definition: core_mqtt.c:1907
A struct representing an MQTT connection.
Definition: core_mqtt.h:163
MQTTStatus_t MQTT_Init(MQTTContext_t *pContext, const TransportInterface_t *pTransportInterface, MQTTGetCurrentTimeFunc_t getTimeFunction, MQTTEventCallback_t userCallback, const MQTTFixedBuffer_t *pNetworkBuffer)
Initialize an MQTT context.
Definition: core_mqtt.c:1691
bool cleanSession
Whether to establish a new, clean session or resume a previous session.
Definition: core_mqtt_serializer.h:138
uint16_t topicFilterLength
Length of subscription topic filter.
Definition: core_mqtt_serializer.h:195
MQTTQoS_t qos
Quality of Service for subscription.
Definition: core_mqtt_serializer.h:185
uint16_t clientIdentifierLength
Length of the client identifier.
Definition: core_mqtt_serializer.h:153
@ MQTTQoS1
Definition: core_mqtt_serializer.h:112
uint8_t type
Type of incoming MQTT packet.
Definition: core_mqtt_serializer.h:249
MQTTQoS_t qos
Quality of Service for message.
Definition: core_mqtt_serializer.h:207
@ MQTTSuccess
Definition: core_mqtt_serializer.h:92
MQTT PUBLISH packet parameters.
Definition: core_mqtt_serializer.h:203
NetworkContext_t * pNetworkContext
Definition: transport_interface.h:249
#define MQTT_PACKET_TYPE_SUBACK
SUBACK (server-to-client).
Definition: core_mqtt_serializer.h:65
uint16_t userNameLength
Length of MQTT user name. Set to 0 if not used.
Definition: core_mqtt_serializer.h:163
size_t payloadLength
Message payload length.
Definition: core_mqtt_serializer.h:237
TransportRecv_t recv
Definition: transport_interface.h:247
@ MQTTSubAckFailure
Failure.
Definition: core_mqtt.h:144
@ MQTTQoS0
Definition: core_mqtt_serializer.h:111
Struct to hold deserialized packet information for an MQTTEventCallback_t callback.
Definition: core_mqtt.h:227
const char * pUserName
MQTT user name. Set to NULL if not used.
Definition: core_mqtt_serializer.h:158
The transport layer interface.
Definition: transport_interface.h:246