diff --git a/include/net/mqtt.h b/include/net/mqtt.h index 5f5cab73c3e..2fd63885372 100644 --- a/include/net/mqtt.h +++ b/include/net/mqtt.h @@ -341,17 +341,17 @@ struct mqtt_sec_config { /** @brief MQTT transport type. */ enum mqtt_transport_type { /** Use non secure TCP transport for MQTT connection. */ - MQTT_TRANSPORT_NON_SECURE = 0x00, + MQTT_TRANSPORT_NON_SECURE, #if defined(CONFIG_MQTT_LIB_TLS) /** Use secure TCP transport (TLS) for MQTT connection. */ - MQTT_TRANSPORT_SECURE = 0x01, + MQTT_TRANSPORT_SECURE, #endif /* CONFIG_MQTT_LIB_TLS */ /** Shall not be used as a transport type. * Indicator of maximum transport types possible. */ - MQTT_TRANSPORT_NUM = 0x02 + MQTT_TRANSPORT_NUM }; /** @brief MQTT transport specific data. */