Basic C library for MQTT packet serialization and deserialization

Dependents:   MQTT MQTT MQTT MQTT ... more

Fork of MQTTPacket by MQTT

This library is part of the EclipseTM Paho project; specifically the embedded client.

A basic MQTT library in C for packet serialization and deserialization

Revision:
12:cd99ac9cb25a
Parent:
0:7734401cc1b4
Child:
14:c2052aee81de
--- a/MQTTDeserializePublish.c	Tue May 06 10:57:57 2014 +0100
+++ b/MQTTDeserializePublish.c	Fri Aug 01 13:03:52 2014 +0100
@@ -33,7 +33,7 @@
   * @param buflen the length in bytes of the data in the supplied buffer
   * @return error code.  1 is success
   */
-int MQTTDeserialize_publish(int* dup, int* qos, int* retained, int* packetid, MQTTString* topicName,
+int MQTTDeserialize_publish(unsigned char* dup, int* qos, unsigned char* retained, int* packetid, MQTTString* topicName,
 		char** payload, int* payloadlen, char* buf, int buflen)
 {
 	MQTTHeader header;
@@ -77,7 +77,7 @@
   * @param buflen the length in bytes of the data in the supplied buffer
   * @return error code.  1 is success, 0 is failure
   */
-int MQTTDeserialize_ack(int* type, int* dup, int* packetid, char* buf, int buflen)
+int MQTTDeserialize_ack(int* type, unsigned char* dup, int* packetid, char* buf, int buflen)
 {
 	MQTTHeader header;
 	char* curdata = buf;