/* Remove impossible values caused by adding a new host */
for (i = 0; i < ctx->history_size; i++)
if (ctx->history_by_value[i] < 0)
- ctx->history_by_value[i]=NAN;
+ ctx->history_by_value[i] = NAN;
/* Sort all RTTs. */
qsort (ctx->history_by_value, ctx->history_size, sizeof
{
ping_context_t *context;
size_t buffer_size;
+ int i;
context = ping_iterator_get_context(iter);
/* if this is a previously existing host, do not recreate it */
- if (context != NULL) {
+ if (context != NULL)
+ {
history_size = context->history_size;
context->index = index++;
continue;
/* start new hosts at the same graph point as old hosts */
context->history_size = history_size;
context->history_index = history_size;
- for (int i = 0; i < history_size; i++) {
+ for (i = 0; i < history_size; i++)
context->history_by_time[i] = -1;
- }
buffer_size = sizeof (context->host);
ping_iterator_get_info (iter, PING_INFO_HOSTNAME, context->host, &buffer_size);
{
char host[NI_MAXHOST];
- wprintw(main_win, "New Host: ");
- echo();
- wgetnstr(main_win, host, sizeof(host));
- noecho();
+ wprintw (main_win, "New Host: ");
+ echo ();
+ wgetnstr (main_win, host, sizeof (host));
+ noecho ();
if (ping_host_add(ping, host) < 0)
{
}
else
{
- /* FIXME - scroll main_win correctly so that
- old data is still visible */
-
+ /* FIXME - scroll main_win correctly so that old
+ * data is still visible */
need_resize = 1;
host_num++;
ping_initialize_contexts(ping);