X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Ftop.c;h=f14395e23872a926eeee0da656cb5eebb7ceaae8;hb=8c953b1bfef3c6ebee7c537c2c2f144807d0311a;hp=b71bcb855cd9e817a46d02300a25ff391125207e;hpb=79e9a4f743b7b59fed968575f6b36171cf4a0063;p=tinc diff --git a/src/top.c b/src/top.c index b71bcb85..f14395e2 100644 --- a/src/top.c +++ b/src/top.c @@ -19,6 +19,8 @@ #include "system.h" +#ifdef HAVE_CURSES + #include #include "control_common.h" @@ -29,6 +31,7 @@ typedef struct nodestats_t { char *name; + int i; uint64_t in_packets; uint64_t in_bytes; uint64_t out_packets; @@ -140,7 +143,7 @@ static void update(int fd) { static void redraw(void) { erase(); - mvprintw(0, 0, "Tinc %-16s Nodes: %4d Sort: %-8s %s", netname ?: "", node_list.count, sortname[sortmode], cumulative ? "Cumulative" : "Current"); + mvprintw(0, 0, "Tinc %-16s Nodes: %4d Sort: %-10s %s", netname ?: "", node_list.count, sortname[sortmode], cumulative ? "Cumulative" : "Current"); attrset(A_REVERSE); mvprintw(2, 0, "Node IN pkts IN %s OUT pkts OUT %s", unit, unit); chgat(-1, A_REVERSE, 0, NULL); @@ -154,6 +157,9 @@ static void redraw(void) { sorted[n++] = i->data; changed = false; } + + for(int i = 0; i < n; i++) + sorted[i]->i = i; int cmpfloat(float a, float b) { if(a < b) @@ -179,36 +185,36 @@ static void redraw(void) { switch(sortmode) { case 1: if(cumulative) - return -cmpu64(na->in_packets, nb->in_packets); + return -cmpu64(na->in_packets, nb->in_packets) ?: na->i - nb->i; else - return -cmpfloat(na->in_packets_rate, nb->in_packets_rate); + return -cmpfloat(na->in_packets_rate, nb->in_packets_rate) ?: na->i - nb->i; case 2: if(cumulative) - return -cmpu64(na->in_bytes, nb->in_bytes); + return -cmpu64(na->in_bytes, nb->in_bytes) ?: na->i - nb->i; else - return -cmpfloat(na->in_bytes_rate, nb->in_bytes_rate); + return -cmpfloat(na->in_bytes_rate, nb->in_bytes_rate) ?: na->i - nb->i; case 3: if(cumulative) - return -cmpu64(na->out_packets, nb->out_packets); + return -cmpu64(na->out_packets, nb->out_packets) ?: na->i - nb->i; else - return -cmpfloat(na->out_packets_rate, nb->out_packets_rate); + return -cmpfloat(na->out_packets_rate, nb->out_packets_rate) ?: na->i - nb->i; case 4: if(cumulative) - return -cmpu64(na->out_bytes, nb->out_bytes); + return -cmpu64(na->out_bytes, nb->out_bytes) ?: na->i - nb->i; else - return -cmpfloat(na->out_bytes_rate, nb->out_bytes_rate); + return -cmpfloat(na->out_bytes_rate, nb->out_bytes_rate) ?: na->i - nb->i; case 5: if(cumulative) - return -cmpu64(na->in_packets + na->out_packets, nb->in_packets + nb->out_packets); + return -cmpu64(na->in_packets + na->out_packets, nb->in_packets + nb->out_packets) ?: na->i - nb->i; else - return -cmpfloat(na->in_packets_rate + na->out_packets_rate, nb->in_packets_rate + nb->out_packets_rate); + return -cmpfloat(na->in_packets_rate + na->out_packets_rate, nb->in_packets_rate + nb->out_packets_rate) ?: na->i - nb->i; case 6: if(cumulative) - return -cmpu64(na->in_bytes + na->out_bytes, nb->in_bytes + nb->out_bytes); + return -cmpu64(na->in_bytes + na->out_bytes, nb->in_bytes + nb->out_bytes) ?: na->i - nb->i; else - return -cmpfloat(na->in_bytes_rate + na->out_bytes_rate, nb->in_bytes_rate + nb->out_bytes_rate); + return -cmpfloat(na->in_bytes_rate + na->out_bytes_rate, nb->in_bytes_rate + nb->out_bytes_rate) ?: na->i - nb->i; default: - return strcmp(na->name, nb->name); + return strcmp(na->name, nb->name) ?: na->i - nb->i; } } @@ -299,7 +305,6 @@ void top(int fd) { scale = 1e-9; break; case 'q': - case 27: case KEY_BREAK: running = false; break; @@ -310,3 +315,5 @@ void top(int fd) { endwin(); } + +#endif