161 |
|
printf("\033[%d;2H%-30s : %5.2f m", line_number++, "Network Total Tx", (total_tx / (1024.00*1024.00))); |
162 |
|
break; |
163 |
|
} |
164 |
< |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Total packets in", total_ipackets); |
165 |
< |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Total packets out", total_opackets); |
166 |
< |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Total errors in", total_ierrors); |
167 |
< |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Total errors out", total_oerrors); |
168 |
< |
printf("\033[%d;2H%-30s : %8lld b", line_number++, "Network Total collisions", total_collisions); |
164 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total packets in", total_ipackets); |
165 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total packets out", total_opackets); |
166 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total errors in", total_ierrors); |
167 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total errors out", total_oerrors); |
168 |
> |
printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Total collisions", total_collisions); |
169 |
|
|
170 |
|
fflush(stdout); |
171 |
|
|