Skip to content

Commit 80b5931

Browse files
author
Dakshit Babbar
committed
Resolve formating issues
1 parent 43aed2a commit 80b5931

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

source/core_mqtt.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -2204,9 +2204,9 @@ static MQTTStatus_t sendPublishWithoutCopy( MQTTContext_t * pContext,
22042204
totalMessageLength += pPublishInfo->payloadLength;
22052205
}
22062206

2207-
/* if not already set, set the dup flag before storing a copy of the publish
2208-
* this is because on retrieving back this copy we will get it in the form of an
2209-
* array of TransportOutVector_t that holds the data in a const pointer which cannot be
2207+
/* if not already set, set the dup flag before storing a copy of the publish
2208+
* this is because on retrieving back this copy we will get it in the form of an
2209+
* array of TransportOutVector_t that holds the data in a const pointer which cannot be
22102210
* changed after retrieving.*/
22112211
if( pPublishInfo->dup != true )
22122212
{
@@ -2550,7 +2550,7 @@ static MQTTStatus_t handleUncleanSessionResumption( MQTTContext_t * pContext )
25502550
status = MQTTPublishRetrieveFailed;
25512551
}
25522552

2553-
/* Resend all the PUBLISH for which PUBACK/PUBREC is not received
2553+
/* Resend all the PUBLISH for which PUBACK/PUBREC is not received
25542554
* after session is reestablished. */
25552555
while( ( packetId != MQTT_PACKET_ID_INVALID ) &&
25562556
( status == MQTTSuccess ) )

source/include/core_mqtt.h

+19-19
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ typedef void (* MQTTEventCallback_t )( struct MQTTContext * pContext,
102102
struct MQTTDeserializedInfo * pDeserializedInfo );
103103

104104
/**
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
106106
* retransmit on an unclean session connection.
107107
*
108108
* @param[in] pContext Initialised MQTT Context.
@@ -114,13 +114,13 @@ typedef void (* MQTTEventCallback_t )( struct MQTTContext * pContext,
114114
*/
115115
/* @[define_mqtt_retransmitstorepacket] */
116116
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 );
120120
/* @[define_mqtt_retransmitstorepacket] */
121121

122122
/**
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
124124
* track any publish retransmit on an unclean session connection.
125125
*
126126
* @param[in] pContext Initialised MQTT Context.
@@ -132,13 +132,13 @@ typedef bool ( * MQTTStorePacketForRetransmit)( struct MQTTContext * pContext,
132132
*/
133133
/* @[define_mqtt_retransmitretrievepacket] */
134134
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 );
138138
/* @[define_mqtt_retransmitretrievepacket] */
139139

140140
/**
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
142142
* track any publish retransmit on an unclean session connection.
143143
*
144144
* @param[in] pContext Initialised MQTT Context.
@@ -147,20 +147,20 @@ typedef bool ( * MQTTRetrievePacketForRetransmit)( struct MQTTContext * pContext
147147
* @return True if the clear is successful else false.
148148
*/
149149
/* @[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 );
152152
/* @[define_mqtt_retransmitclearpacket] */
153153

154154
/**
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
156156
* when connecting with a clean session.
157157
*
158158
* @param[in] pContext Initialised MQTT Context.
159159
*
160160
* @return True if the clear all is successful else false.
161161
*/
162162
/* @[define_mqtt_retransmitclearallpackets] */
163-
typedef bool (*MQTTClearAllPacketsForRetransmit)( struct MQTTContext * pContext );
163+
typedef bool (* MQTTClearAllPacketsForRetransmit)( struct MQTTContext * pContext );
164164
/* @[define_mqtt_retransmitclearallpackets] */
165165

166166
/**
@@ -323,7 +323,7 @@ typedef struct MQTTContext
323323
/**
324324
* @brief User defined API used to clear a particular copied publish packet.
325325
*/
326-
MQTTClearPacketForRetransmit clearFunction;
326+
MQTTClearPacketForRetransmit clearFunction;
327327

328328
/**
329329
* @brief User defined API used to clear all copied publish packets.
@@ -510,7 +510,7 @@ MQTTStatus_t MQTT_InitStatefulQoS( MQTTContext_t * pContext,
510510
*
511511
* @return #MQTTBadParameter if invalid parameters are passed;
512512
* #MQTTSuccess otherwise.
513-
*
513+
*
514514
* <b>Example</b>
515515
* @code{c}
516516
*
@@ -571,12 +571,12 @@ MQTTStatus_t MQTT_InitStatefulQoS( MQTTContext_t * pContext,
571571
*
572572
* // Now QoS1 and/or QoS2 publishes can be sent with this context.
573573
* }
574-
*
574+
*
575575
* if( status == MQTTSuccess )
576576
* {
577-
* status = MQTT_InitRetransmits( &mqttContext, publishStoreCallback,
578-
* publishRetrieveCallback,
579-
* publishClearCallback,
577+
* status = MQTT_InitRetransmits( &mqttContext, publishStoreCallback,
578+
* publishRetrieveCallback,
579+
* publishClearCallback,
580580
* publishClearAllCallback );
581581
*
582582
* // Now unacked Publishes can be resent on an unclean session resumption.

0 commit comments

Comments
 (0)