Skip to content

Commit

Permalink
bump revno up
Browse files Browse the repository at this point in the history
  • Loading branch information
scaprile committed Jul 4, 2023
1 parent d791ce3 commit 5c8e05a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions mongoose.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion mongoose.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef MONGOOSE_H
#define MONGOOSE_H

#define MG_VERSION "7.10"
#define MG_VERSION "7.11"

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define MG_VERSION "7.10"
#define MG_VERSION "7.11"

0 comments on commit 5c8e05a

Please sign in to comment.