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.
Dependents: Water_Monitor_clone_v1 Cloud_IBM_MbedOS ble-star-mbed
Fork of MQTT by
MQTTClient.cpp
- Committer:
- icraggs
- Date:
- 2014-04-30
- Revision:
- 22:aadb79d29330
- Parent:
- 13:fd82db992024
File content as of revision 22:aadb79d29330:
/*******************************************************************************
* Copyright (c) 2014 IBM Corp.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Ian Craggs - initial API and implementation and/or initial documentation
*******************************************************************************/
#include "MQTTClient.h"
#include "MQTTPacket.h"
MQTT::PacketId::PacketId()
{
next = 0;
}
int MQTT::PacketId::getNext()
{
return next = (next == MAX_PACKET_ID) ? 1 : ++next;
}
