MQTT
Diff: MQTTClient.cpp
- Revision:
- 23:05fc7de97d4a
- Parent:
- 22:aadb79d29330
- Child:
- 24:c56a5c7d2a52
- Child:
- 26:2658bb87c53d
--- a/MQTTClient.cpp Wed Apr 30 13:03:45 2014 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -/******************************************************************************* - * 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; -} -