MQTTPacket
Fork of MQTTPacket by
Revision 22:a487a702b185, committed 2017-08-25
- Comitter:
- zhangyx
- Date:
- Fri Aug 25 15:07:47 2017 +0000
- Parent:
- 21:62396c1620b6
- Commit message:
- fix compilation
Changed in this revision
diff -r 62396c1620b6 -r a487a702b185 MQTTConnectClient.c --- a/MQTTConnectClient.c Mon Aug 03 12:38:58 2015 +0000 +++ b/MQTTConnectClient.c Fri Aug 25 15:07:47 2017 +0000 @@ -71,7 +71,7 @@ } header.byte = 0; - header.bits.type = CONNECT; + header.bits.type = CONNECT_1; writeChar(&ptr, header.byte); /* write header */ ptr += MQTTPacket_encode(ptr, len); /* write remaining length */
diff -r 62396c1620b6 -r a487a702b185 MQTTConnectServer.c --- a/MQTTConnectServer.c Mon Aug 03 12:38:58 2015 +0000 +++ b/MQTTConnectServer.c Fri Aug 25 15:07:47 2017 +0000 @@ -61,7 +61,7 @@ FUNC_ENTRY; header.byte = readChar(&curdata); - if (header.bits.type != CONNECT) + if (header.bits.type != CONNECT_1) goto exit; curdata += MQTTPacket_decodeBuf(curdata, &mylen); /* read remaining length */
diff -r 62396c1620b6 -r a487a702b185 MQTTPacket.c --- a/MQTTPacket.c Mon Aug 03 12:38:58 2015 +0000 +++ b/MQTTPacket.c Fri Aug 25 15:07:47 2017 +0000 @@ -332,7 +332,7 @@ switch (header.bits.type) { - case CONNECT: + case CONNECT_1: { MQTTPacket_connectData data; if (MQTTDeserialize_connect(&data, buf, buflen) == 1)
diff -r 62396c1620b6 -r a487a702b185 MQTTPacket.h --- a/MQTTPacket.h Mon Aug 03 12:38:58 2015 +0000 +++ b/MQTTPacket.h Fri Aug 25 15:07:47 2017 +0000 @@ -30,7 +30,7 @@ enum msgTypes { - CONNECT = 1, CONNACK, PUBLISH, PUBACK, PUBREC, PUBREL, + CONNECT_1 = 1, CONNACK, PUBLISH, PUBACK, PUBREC, PUBREL, PUBCOMP, SUBSCRIBE, SUBACK, UNSUBSCRIBE, UNSUBACK, PINGREQ, PINGRESP, DISCONNECT };