mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-02 20:05:52 +00:00
13 lines
548 B
C
13 lines
548 B
C
#pragma once
|
|
|
|
#include "mesh/generated/meshtastic/mqtt.pb.h"
|
|
|
|
// meshtastic_ServiceEnvelope that automatically releases dynamically allocated memory when it goes out of scope.
|
|
struct DecodedServiceEnvelope : public meshtastic_ServiceEnvelope {
|
|
DecodedServiceEnvelope(const uint8_t *payload, size_t length);
|
|
DecodedServiceEnvelope(DecodedServiceEnvelope &) = delete;
|
|
DecodedServiceEnvelope(DecodedServiceEnvelope &&);
|
|
~DecodedServiceEnvelope();
|
|
// Clients must check that this is true before using.
|
|
const bool validDecode;
|
|
}; |