Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 942cce4

Browse files
authored
v1.0.0 initial porting and coding
### Initial Releases v1.0.0 1. Initial porting and coding to support **ESP32 (SSL and non-SSL) and ESP8266 (non-SSL)**
1 parent d0a5eee commit 942cce4

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

src/AsyncMqttClient_Generic_Impl.h

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,23 @@
2828
/////////////////////////////////////////////////////////
2929

3030
const char* PacketTypeName[] =
31-
{ "RESERVED", "CONNECT", "CONNACK", "PUBLISH", "PUBACK", "PUBREC", "PUBREL", "PUBCOMP",
32-
"SUBSCRIBE", "SUBACK", "UNSUBSCRIBE", "UNSUBACK", "PINGREQ", "PINGRESP", "DISCONNECT", "RESERVED2"
31+
{
32+
"RESERVED",
33+
"CONNECT",
34+
"CONNACK",
35+
"PUBLISH",
36+
"PUBACK",
37+
"PUBREC",
38+
"PUBREL",
39+
"PUBCOMP",
40+
"SUBSCRIBE",
41+
"SUBACK",
42+
"UNSUBSCRIBE",
43+
"UNSUBACK",
44+
"PINGREQ",
45+
"PINGRESP",
46+
"DISCONNECT",
47+
"RESERVED2"
3348
};
3449

3550
/////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)