mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
experimental mqtt client supporting large packets
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include "OutPacket.hpp"
|
||||
#include "../../Flags.hpp"
|
||||
#include "../../Helpers.hpp"
|
||||
|
||||
namespace AsyncMqttClientInternals {
|
||||
class DisconnOutPacket : public OutPacket {
|
||||
public:
|
||||
DisconnOutPacket();
|
||||
const uint8_t* data(size_t index = 0) const;
|
||||
size_t size() const;
|
||||
|
||||
private:
|
||||
uint8_t _data[2];
|
||||
};
|
||||
} // namespace AsyncMqttClientInternals
|
||||
Reference in New Issue
Block a user