1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 16:01:18 +01:00

sys/include/net/netstats: re-order result codes

This commit is contained in:
Benjamin Valentin 2024-11-18 17:03:40 +01:00
parent 6a1f1baddf
commit 5e18262ad7

View File

@ -32,9 +32,9 @@ extern "C" {
* @{
*/
typedef enum {
NETSTATS_NB_BUSY, /**< Failed due to medium busy */
NETSTATS_NB_NOACK, /**< Failed due to no ack received */
NETSTATS_NB_SUCCESS, /**< Successful transmission */
NETSTATS_NB_SUCCESS = 0, /**< Successful transmission */
NETSTATS_NB_NOACK, /**< Failed due to no ack received */
NETSTATS_NB_BUSY, /**< Failed due to medium busy */
} netstats_nb_result_t;
/** @} */