summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7d03821)
raw | patch | inline | side by side (parent: 7d03821)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Tue, 8 Jun 2010 16:43:11 +0000 (18:43 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Tue, 8 Jun 2010 16:43:11 +0000 (18:43 +0200) |
src/oping.c | patch | blob | history |
diff --git a/src/oping.c b/src/oping.c
index 3934b4a65db0bfc8b4ad0d320c465077d287a235..bc606e5f37c7396ec3bfdcf61bc039dfe9432954 100644 (file)
--- a/src/oping.c
+++ b/src/oping.c
#if USE_NCURSES
# include <ncurses.h>
+
+# define OPING_GREEN 1
+# define OPING_YELLOW 2
+# define OPING_RED 3
#endif
#include "oping.h"
if ((context->latency_min < 0.0) || (context->latency_min > latency))
context->latency_min = latency;
+#if USE_NCURSES
+ if (has_colors () == TRUE)
+ {
+ int color = OPING_GREEN;
+ double average = context_get_average (context);
+ double stddev = context_get_stddev (context);
+
+ if ((latency < (average - (2 * stddev)))
+ || (latency > (average + (2 * stddev))))
+ color = OPING_RED;
+ else if ((latency < (average - stddev))
+ || (latency > (average + stddev)))
+ color = OPING_YELLOW;
+
+ HOST_PRINTF ("%zu bytes from %s (%s): icmp_seq=%u ttl=%i "
+ "time=",
+ data_len, context->host, context->addr,
+ sequence, recv_ttl);
+ wattron (main_win, COLOR_PAIR(color));
+ HOST_PRINTF ("%.2f", latency);
+ wattroff (main_win, COLOR_PAIR(color));
+ HOST_PRINTF (" ms\n");
+ }
+ else
+ {
+#endif
HOST_PRINTF ("%zu bytes from %s (%s): icmp_seq=%u ttl=%i "
"time=%.2f ms\n",
data_len,
context->host, context->addr,
sequence, recv_ttl, latency);
+#if USE_NCURSES
+ }
+#endif
}
else
{
+#if USE_NCURSES
+ if (has_colors () == TRUE)
+ {
+ HOST_PRINTF ("echo reply from %s (%s): icmp_seq=%u ",
+ context->host, context->addr,
+ sequence);
+ wattron (main_win, COLOR_PAIR(OPING_RED) | A_BOLD);
+ HOST_PRINTF ("timeout");
+ wattroff (main_win, COLOR_PAIR(OPING_RED) | A_BOLD);
+ HOST_PRINTF ("\n");
+ }
+ else
+ {
+#endif
HOST_PRINTF ("echo reply from %s (%s): icmp_seq=%u timeout\n",
context->host, context->addr,
sequence);
+#if USE_NCURSES
+ }
+#endif
}
#if USE_NCURSES
cbreak ();
noecho ();
nodelay (stdscr, TRUE);
+
+ if (has_colors () == TRUE)
+ {
+ start_color ();
+ init_pair (OPING_GREEN, COLOR_GREEN, /* default = */ 0);
+ init_pair (OPING_YELLOW, COLOR_YELLOW, /* default = */ 0);
+ init_pair (OPING_RED, COLOR_RED, /* default = */ 0);
+ }
#endif
index = 0;