ME910 support

Dependents:   5_Dragonfly_Cayenne_Sprint_IKS01A1

Fork of Cayenne-MQTT-mbed-MTSAS by Peter Ferland

Committer:
pferland
Date:
Thu Sep 07 16:10:53 2017 +0000
Revision:
25:4bae4d3efe12
Parent:
0:09ef59d2d0f7
Child:
22:0dbabcc6e7b2
Replaced domain name with ip address

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jburhenn 0:09ef59d2d0f7 1 /*******************************************************************************
jburhenn 0:09ef59d2d0f7 2 * Copyright (c) 2014 IBM Corp.
jburhenn 0:09ef59d2d0f7 3 *
jburhenn 0:09ef59d2d0f7 4 * All rights reserved. This program and the accompanying materials
jburhenn 0:09ef59d2d0f7 5 * are made available under the terms of the Eclipse Public License v1.0
jburhenn 0:09ef59d2d0f7 6 * and Eclipse Distribution License v1.0 which accompany this distribution.
jburhenn 0:09ef59d2d0f7 7 *
jburhenn 0:09ef59d2d0f7 8 * The Eclipse Public License is available at
jburhenn 0:09ef59d2d0f7 9 * http://www.eclipse.org/legal/epl-v10.html
jburhenn 0:09ef59d2d0f7 10 * and the Eclipse Distribution License is available at
jburhenn 0:09ef59d2d0f7 11 * http://www.eclipse.org/org/documents/edl-v10.php.
jburhenn 0:09ef59d2d0f7 12 *
jburhenn 0:09ef59d2d0f7 13 * Contributors:
jburhenn 0:09ef59d2d0f7 14 * Ian Craggs - initial API and implementation and/or initial documentation
jburhenn 0:09ef59d2d0f7 15 * Xiang Rong - 442039 Add makefile to Embedded C client
jburhenn 0:09ef59d2d0f7 16 *******************************************************************************/
jburhenn 0:09ef59d2d0f7 17
jburhenn 0:09ef59d2d0f7 18 #ifndef MQTTUNSUBSCRIBE_H_
jburhenn 0:09ef59d2d0f7 19 #define MQTTUNSUBSCRIBE_H_
jburhenn 0:09ef59d2d0f7 20
jburhenn 0:09ef59d2d0f7 21 #if !defined(DLLImport)
jburhenn 0:09ef59d2d0f7 22 #define DLLImport
jburhenn 0:09ef59d2d0f7 23 #endif
jburhenn 0:09ef59d2d0f7 24 #if !defined(DLLExport)
jburhenn 0:09ef59d2d0f7 25 #define DLLExport
jburhenn 0:09ef59d2d0f7 26 #endif
jburhenn 0:09ef59d2d0f7 27
jburhenn 0:09ef59d2d0f7 28 DLLExport int MQTTSerialize_unsubscribe(unsigned char* buf, int buflen, unsigned char dup, unsigned short packetid,
jburhenn 0:09ef59d2d0f7 29 int count, MQTTString topicFilters[]);
jburhenn 0:09ef59d2d0f7 30
jburhenn 0:09ef59d2d0f7 31 DLLExport int MQTTDeserialize_unsubscribe(unsigned char* dup, unsigned short* packetid, int max_count, int* count, MQTTString topicFilters[],
jburhenn 0:09ef59d2d0f7 32 unsigned char* buf, int len);
jburhenn 0:09ef59d2d0f7 33
jburhenn 0:09ef59d2d0f7 34 DLLExport int MQTTSerialize_unsuback(unsigned char* buf, int buflen, unsigned short packetid);
jburhenn 0:09ef59d2d0f7 35
jburhenn 0:09ef59d2d0f7 36 DLLExport int MQTTDeserialize_unsuback(unsigned short* packetid, unsigned char* buf, int len);
jburhenn 0:09ef59d2d0f7 37
jburhenn 0:09ef59d2d0f7 38 #endif /* MQTTUNSUBSCRIBE_H_ */