1
0
mirror of https://github.com/adafruit/Adafruit_MQTT_Library.git synced 2025-06-11 22:48:09 +03:00

renames disconnect to disconnectServer and adds disconnectPacket

This commit is contained in:
Todd Treece
2015-10-05 14:07:49 -04:00
parent f9ae6f3146
commit 16da46aece
2 changed files with 7 additions and 4 deletions

View File

@ -279,7 +279,7 @@ Adafruit_MQTT_Subscribe *Adafruit_MQTT::readSubscription(int16_t timeout) {
// to make comparison case insensitive.
if (strncasecmp_P((char*)buffer+4, subscriptions[i]->topic, topiclen) == 0) {
DEBUG_PRINT(F("Found sub #")); DEBUG_PRINTLN(i);
break;
break;
}
}
}