Paho Asynchronous MQTT C Client Library
|
#include <MQTTProperties.h>
Data Fields | |
enum MQTTPropertyCodes | identifier |
union { | |
char byte | |
short integer2 | |
int integer4 | |
struct { | |
MQTTLenString data | |
MQTTLenString value | |
} | |
} | value |
Structure to hold an MQTT version 5 property of any type
enum MQTTPropertyCodes identifier |
The MQTT V5 property id. A multi-byte integer.
char byte |
holds the value of a byte property type
short integer2 |
holds the value of a 2 byte integer property type
int integer4 |
holds the value of a 4 byte integer property type
MQTTLenString data |
The value of a string property, or the name of a user property.
MQTTLenString value |
The value of a user property.
union { ... } value |
The value of the property, as a union of the different possible types.