summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins-root/check_icmp.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c
index 2fd92cd..6eefeb0 100644
--- a/plugins-root/check_icmp.c
+++ b/plugins-root/check_icmp.c
@@ -175,7 +175,13 @@ typedef union icmp_packet {
175#define MODE_ALL 2 175#define MODE_ALL 2
176#define MODE_ICMP 3 176#define MODE_ICMP 3
177 177
178enum enum_threshold_mode { const_rta_mode, const_packet_loss_mode, const_jitter_mode, const_mos_mode, const_score_mode }; 178enum enum_threshold_mode {
179 const_rta_mode,
180 const_packet_loss_mode,
181 const_jitter_mode,
182 const_mos_mode,
183 const_score_mode
184};
179 185
180typedef enum enum_threshold_mode threshold_mode; 186typedef enum enum_threshold_mode threshold_mode;
181 187