Fork of my MQTTGateway

Dependencies:   mbed-http

Committer:
vpcola
Date:
Sat Apr 08 14:45:51 2017 +0000
Revision:
0:f1d3878b8dd9
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vpcola 0:f1d3878b8dd9 1 /*******************************************************************************
vpcola 0:f1d3878b8dd9 2 * Copyright (c) 2014 IBM Corp.
vpcola 0:f1d3878b8dd9 3 *
vpcola 0:f1d3878b8dd9 4 * All rights reserved. This program and the accompanying materials
vpcola 0:f1d3878b8dd9 5 * are made available under the terms of the Eclipse Public License v1.0
vpcola 0:f1d3878b8dd9 6 * and Eclipse Distribution License v1.0 which accompany this distribution.
vpcola 0:f1d3878b8dd9 7 *
vpcola 0:f1d3878b8dd9 8 * The Eclipse Public License is available at
vpcola 0:f1d3878b8dd9 9 * http://www.eclipse.org/legal/epl-v10.html
vpcola 0:f1d3878b8dd9 10 * and the Eclipse Distribution License is available at
vpcola 0:f1d3878b8dd9 11 * http://www.eclipse.org/org/documents/edl-v10.php.
vpcola 0:f1d3878b8dd9 12 *
vpcola 0:f1d3878b8dd9 13 * Contributors:
vpcola 0:f1d3878b8dd9 14 * Ian Craggs - initial API and implementation and/or initial documentation
vpcola 0:f1d3878b8dd9 15 *******************************************************************************/
vpcola 0:f1d3878b8dd9 16
vpcola 0:f1d3878b8dd9 17 #ifndef MQTTSUBSCRIBE_H_
vpcola 0:f1d3878b8dd9 18 #define MQTTSUBSCRIBE_H_
vpcola 0:f1d3878b8dd9 19
vpcola 0:f1d3878b8dd9 20 int MQTTSerialize_subscribe(unsigned char* buf, int buflen, unsigned char dup, unsigned short packetid,
vpcola 0:f1d3878b8dd9 21 int count, MQTTString topicFilters[], int requestedQoSs[]);
vpcola 0:f1d3878b8dd9 22
vpcola 0:f1d3878b8dd9 23 int MQTTDeserialize_subscribe(unsigned char* dup, unsigned short* packetid,
vpcola 0:f1d3878b8dd9 24 int maxcount, int* count, MQTTString topicFilters[], int requestedQoSs[], unsigned char* buf, int len);
vpcola 0:f1d3878b8dd9 25
vpcola 0:f1d3878b8dd9 26 int MQTTSerialize_suback(unsigned char* buf, int buflen, unsigned short packetid, int count, int* grantedQoSs);
vpcola 0:f1d3878b8dd9 27
vpcola 0:f1d3878b8dd9 28 int MQTTDeserialize_suback(unsigned short* packetid, int maxcount, int* count, int grantedQoSs[], unsigned char* buf, int len);
vpcola 0:f1d3878b8dd9 29
vpcola 0:f1d3878b8dd9 30
vpcola 0:f1d3878b8dd9 31 #endif /* MQTTSUBSCRIBE_H_ */