1 |
|
/* |
2 |
|
* i-scream central monitoring system |
3 |
< |
* http://www.i-scream.org.uk |
4 |
< |
* Copyright (C) 2000-2002 i-scream |
3 |
> |
* http://www.i-scream.org |
4 |
> |
* Copyright (C) 2000-2003 i-scream |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or |
7 |
|
* modify it under the terms of the GNU General Public License |
51 |
|
int num_network_stats; |
52 |
|
|
53 |
|
/* Parse command line options */ |
54 |
< |
while ((c = getopt(argc, argv, "d:bkm")) != EOF){ |
54 |
> |
while ((c = getopt(argc, argv, "d:bkm")) != -1){ |
55 |
|
switch (c){ |
56 |
|
case 'd': |
57 |
|
delay = atoi(optarg); |
103 |
|
printf("\033[%d;2H%-25s : %5lld", line_number++, "Network Interface Tx", (network_stats->tx / 1024)); |
104 |
|
break; |
105 |
|
case 'm': |
106 |
< |
printf("\033[%d;2H%-25s : %5.2f m", line_number++, "Network Interface Tx", network_stats->rx / (1024.00*1024.00)); |
106 |
> |
printf("\033[%d;2H%-25s : %5.2f m", line_number++, "Network Interface Rx", network_stats->rx / (1024.00*1024.00)); |
107 |
|
printf("\033[%d;2H%-25s : %5.2f m", line_number++, "Network Interface Tx", network_stats->tx / (1024.00*1024.00)); |
108 |
|
} |
109 |
|
printf("\033[%d;2H%-25s : %ld ", line_number++, "Network Interface systime", (long) network_stats->systime); |