diff options
author | dartraiden <wowemuh@gmail.com> | 2025-04-21 09:33:29 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2025-04-21 09:50:38 +0300 |
commit | cf6ba06cd445f1f4554701637d5bab581acfba98 (patch) | |
tree | 0d9b618df1c8f888cb37221be0590f4a677fe477 /libs/libcurl/src/mqtt.h | |
parent | 842ec200cd37ae05f2a9c56f2a4040088d2ac917 (diff) |
libcurl: update to 8.13.0
Diffstat (limited to 'libs/libcurl/src/mqtt.h')
-rw-r--r-- | libs/libcurl/src/mqtt.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libs/libcurl/src/mqtt.h b/libs/libcurl/src/mqtt.h index ea81f40448..6393e0c552 100644 --- a/libs/libcurl/src/mqtt.h +++ b/libs/libcurl/src/mqtt.h @@ -49,15 +49,13 @@ struct mqtt_conn { /* protocol-specific transfer-related data */
struct MQTT {
- char *sendleftovers;
- size_t nsend; /* size of sendleftovers */
-
+ struct dynbuf sendbuf;
/* when receiving */
+ struct dynbuf recvbuf;
size_t npacket; /* byte counter */
- unsigned char firstbyte;
size_t remaining_length;
- struct dynbuf recvbuf;
unsigned char pkt_hd[4]; /* for decoding the arriving packet length */
+ unsigned char firstbyte;
};
#endif /* HEADER_CURL_MQTT_H */
|