Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of MQTT by
Diff: MQTTClient.h
- Revision:
- 54:ff9e5c4b52d0
- Parent:
- 53:15b5a280d22d
- Child:
- 56:71ae1a773b64
diff -r 15b5a280d22d -r ff9e5c4b52d0 MQTTClient.h
--- a/MQTTClient.h Mon Sep 25 12:06:28 2017 +0000
+++ b/MQTTClient.h Sat Sep 30 16:46:21 2017 +0000
@@ -400,7 +400,8 @@
#if defined(MQTT_DEBUG)
char printbuf[150];
- DEBUG("Rc %d from sending packet %s\n", rc, MQTTFormat_toServerString(printbuf, sizeof(printbuf), sendbuf, length));
+ DEBUG("Rc %d from sending packet %s\n", rc,
+ MQTTFormat_toServerString(printbuf, sizeof(printbuf), sendbuf, length));
#endif
return rc;
}
@@ -479,7 +480,7 @@
if (rc >= 0)
{
char printbuf[50];
- DEBUG("Rc %d from receiving packet %s\n", rc,
+ DEBUG("Rc %d receiving packet %s\n", rc,
MQTTFormat_toClientString(printbuf, sizeof(printbuf), readbuf, len));
}
#endif
@@ -676,13 +677,14 @@
int MQTT::Client<Network, Timer, MAX_MQTT_PACKET_SIZE, b>::keepalive()
{
int rc = SUCCESS;
+ static Timer ping_sent;
if (keepAliveInterval == 0)
goto exit;
-
- if (last_sent.expired() || last_received.expired())
+
+ if (ping_outstanding)
{
- if (ping_outstanding)
+ if (ping_sent.expired())
{
rc = FAILURE; // session failure
#if defined(MQTT_DEBUG)
@@ -690,15 +692,17 @@
DEBUG("PINGRESP not received in keepalive interval\n");
#endif
}
- else
+ }
+ else if (last_sent.expired() || last_received.expired())
+ {
+ Timer timer(1000);
+ int len = MQTTSerialize_pingreq(sendbuf, MAX_MQTT_PACKET_SIZE);
+ if (len > 0 && (rc = sendPacket(len, timer)) == SUCCESS) // send the ping packet
{
- Timer timer(1000);
- int len = MQTTSerialize_pingreq(sendbuf, MAX_MQTT_PACKET_SIZE);
- if (len > 0 && (rc = sendPacket(len, timer)) == SUCCESS) // send the ping packet
- ping_outstanding = true;
+ ping_outstanding = true;
+ ping_sent.countdown(this->keepAliveInterval);
}
}
-
exit:
return rc;
}
