Client: Fix C++ build failing on incorrect event enum conversion

Closes https://github.com/espressif/esp-idf/issues/4787
This commit is contained in:
David Cermak
2020-02-20 12:37:16 +01:00
parent d801f03f46
commit e2aa29d2ea
2 changed files with 4 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ typedef struct esp_mqtt_client *esp_mqtt_client_handle_t;
*
*/
typedef enum {
MQTT_EVENT_ANY = -1,
MQTT_EVENT_ERROR = 0, /*!< on error event, additional context: connection return code, error handle from esp_tls (if supported) */
MQTT_EVENT_CONNECTED, /*!< connected event, additional context: session_present flag */
MQTT_EVENT_DISCONNECTED, /*!< disconnected event */