@@ -102,7 +102,7 @@ typedef void (* MQTTEventCallback_t )( struct MQTTContext * pContext,
102
102
struct MQTTDeserializedInfo * pDeserializedInfo );
103
103
104
104
/**
105
- * @brief User defined callback used to store outgoing publishes. Used to track any publish
105
+ * @brief User defined callback used to store outgoing publishes. Used to track any publish
106
106
* retransmit on an unclean session connection.
107
107
*
108
108
* @param[in] pContext Initialised MQTT Context.
@@ -114,13 +114,13 @@ typedef void (* MQTTEventCallback_t )( struct MQTTContext * pContext,
114
114
*/
115
115
/* @[define_mqtt_retransmitstorepacket] */
116
116
typedef bool ( * MQTTStorePacketForRetransmit )( struct MQTTContext * pContext ,
117
- uint16_t packetId ,
118
- TransportOutVector_t * pIoVec ,
119
- size_t ioVecCount );
117
+ uint16_t packetId ,
118
+ TransportOutVector_t * pIoVec ,
119
+ size_t ioVecCount );
120
120
/* @[define_mqtt_retransmitstorepacket] */
121
121
122
122
/**
123
- * @brief User defined callback used to retreive a copied publish for resend operation. Used to
123
+ * @brief User defined callback used to retreive a copied publish for resend operation. Used to
124
124
* track any publish retransmit on an unclean session connection.
125
125
*
126
126
* @param[in] pContext Initialised MQTT Context.
@@ -132,13 +132,13 @@ typedef bool ( * MQTTStorePacketForRetransmit)( struct MQTTContext * pContext,
132
132
*/
133
133
/* @[define_mqtt_retransmitretrievepacket] */
134
134
typedef bool ( * MQTTRetrievePacketForRetransmit )( struct MQTTContext * pContext ,
135
- uint16_t packetId ,
136
- TransportOutVector_t * * pIoVec ,
137
- size_t * ioVecCount );
135
+ uint16_t packetId ,
136
+ TransportOutVector_t * * pIoVec ,
137
+ size_t * ioVecCount );
138
138
/* @[define_mqtt_retransmitretrievepacket] */
139
139
140
140
/**
141
- * @brief User defined callback used to clear a particular copied publish packet. Used to
141
+ * @brief User defined callback used to clear a particular copied publish packet. Used to
142
142
* track any publish retransmit on an unclean session connection.
143
143
*
144
144
* @param[in] pContext Initialised MQTT Context.
@@ -147,20 +147,20 @@ typedef bool ( * MQTTRetrievePacketForRetransmit)( struct MQTTContext * pContext
147
147
* @return True if the clear is successful else false.
148
148
*/
149
149
/* @[define_mqtt_retransmitclearpacket] */
150
- typedef bool (* MQTTClearPacketForRetransmit )( struct MQTTContext * pContext ,
151
- uint16_t packetId );
150
+ typedef bool (* MQTTClearPacketForRetransmit )( struct MQTTContext * pContext ,
151
+ uint16_t packetId );
152
152
/* @[define_mqtt_retransmitclearpacket] */
153
153
154
154
/**
155
- * @brief User defined callback used to clear all copied publish packets. Used to
155
+ * @brief User defined callback used to clear all copied publish packets. Used to
156
156
* when connecting with a clean session.
157
157
*
158
158
* @param[in] pContext Initialised MQTT Context.
159
159
*
160
160
* @return True if the clear all is successful else false.
161
161
*/
162
162
/* @[define_mqtt_retransmitclearallpackets] */
163
- typedef bool (* MQTTClearAllPacketsForRetransmit )( struct MQTTContext * pContext );
163
+ typedef bool (* MQTTClearAllPacketsForRetransmit )( struct MQTTContext * pContext );
164
164
/* @[define_mqtt_retransmitclearallpackets] */
165
165
166
166
/**
@@ -323,7 +323,7 @@ typedef struct MQTTContext
323
323
/**
324
324
* @brief User defined API used to clear a particular copied publish packet.
325
325
*/
326
- MQTTClearPacketForRetransmit clearFunction ;
326
+ MQTTClearPacketForRetransmit clearFunction ;
327
327
328
328
/**
329
329
* @brief User defined API used to clear all copied publish packets.
@@ -510,7 +510,7 @@ MQTTStatus_t MQTT_InitStatefulQoS( MQTTContext_t * pContext,
510
510
*
511
511
* @return #MQTTBadParameter if invalid parameters are passed;
512
512
* #MQTTSuccess otherwise.
513
- *
513
+ *
514
514
* <b>Example</b>
515
515
* @code{c}
516
516
*
@@ -571,12 +571,12 @@ MQTTStatus_t MQTT_InitStatefulQoS( MQTTContext_t * pContext,
571
571
*
572
572
* // Now QoS1 and/or QoS2 publishes can be sent with this context.
573
573
* }
574
- *
574
+ *
575
575
* if( status == MQTTSuccess )
576
576
* {
577
- * status = MQTT_InitRetransmits( &mqttContext, publishStoreCallback,
578
- * publishRetrieveCallback,
579
- * publishClearCallback,
577
+ * status = MQTT_InitRetransmits( &mqttContext, publishStoreCallback,
578
+ * publishRetrieveCallback,
579
+ * publishClearCallback,
580
580
* publishClearAllCallback );
581
581
*
582
582
* // Now unacked Publishes can be resent on an unclean session resumption.
0 commit comments