acd.h: No "," at last enum element

This commit is contained in:
Dirk Ziegelmeier 2018-10-04 17:33:02 +02:00
parent f8ed17082d
commit 9c86302113

View File

@ -75,13 +75,13 @@ typedef enum {
ACD_STATE_PASSIVE_ONGOING, ACD_STATE_PASSIVE_ONGOING,
/* To many conflicts occured, we need to wait before restarting the selection /* To many conflicts occured, we need to wait before restarting the selection
* process */ * process */
ACD_STATE_RATE_LIMIT, ACD_STATE_RATE_LIMIT
} acd_state_enum_t; } acd_state_enum_t;
typedef enum { typedef enum {
ACD_IP_OK, /* IP address is good, no conflicts found in checking state */ ACD_IP_OK, /* IP address is good, no conflicts found in checking state */
ACD_RESTART_CLIENT, /* Conflict found -> the client should try again */ ACD_RESTART_CLIENT, /* Conflict found -> the client should try again */
ACD_DECLINE, /* Decline the received IP address (rate limiting)*/ ACD_DECLINE /* Decline the received IP address (rate limiting)*/
} acd_callback_enum_t; } acd_callback_enum_t;
#ifdef __cplusplus #ifdef __cplusplus