mirror of
https://github.com/wled/WLED.git
synced 2025-11-12 20:40:52 +00:00
14 lines
228 B
C++
14 lines
228 B
C++
#pragma once
|
|
|
|
namespace AsyncMqttClientInternals {
|
|
struct PendingPubRel {
|
|
uint16_t packetId;
|
|
};
|
|
|
|
struct PendingAck {
|
|
uint8_t packetType;
|
|
uint8_t headerFlag;
|
|
uint16_t packetId;
|
|
};
|
|
} // namespace AsyncMqttClientInternals
|