mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-26 22:41:03 +08:00
bump revno up
This commit is contained in:
parent
d791ce393b
commit
5c8e05a4fc
@ -3452,8 +3452,9 @@ static void mqtt_cb(struct mg_connection *c, int ev, void *ev_data,
|
||||
if (c->is_mqtt5) remaining_len += 2; // 3.4.2
|
||||
|
||||
mg_mqtt_send_header(
|
||||
c, mm.qos == 2 ? MQTT_CMD_PUBREC : MQTT_CMD_PUBACK, 0,
|
||||
remaining_len);
|
||||
c,
|
||||
(uint8_t) (mm.qos == 2 ? MQTT_CMD_PUBREC : MQTT_CMD_PUBACK),
|
||||
0, remaining_len);
|
||||
mg_send(c, &id, sizeof(id));
|
||||
|
||||
if (c->is_mqtt5) {
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef MONGOOSE_H
|
||||
#define MONGOOSE_H
|
||||
|
||||
#define MG_VERSION "7.10"
|
||||
#define MG_VERSION "7.11"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -1 +1 @@
|
||||
#define MG_VERSION "7.10"
|
||||
#define MG_VERSION "7.11"
|
||||
|
Loading…
x
Reference in New Issue
Block a user