ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/examples/network_traffic.c
(Generate patch)

Comparing projects/libstatgrab/examples/network_traffic.c (file contents):
Revision 1.9 by tdb, Sat Mar 6 22:37:27 2004 UTC vs.
Revision 1.11 by tdb, Mon Mar 8 12:30:08 2004 UTC

# Line 122 | Line 122 | int main(int argc, char **argv){
122                                          printf("\033[%d;2H%-30s : %5.2f m", line_number++, "Network Interface Rx", network_stats->rx / (1024.00*1024.00));
123                                          printf("\033[%d;2H%-30s : %5.2f m", line_number++, "Network Interface Tx", network_stats->tx / (1024.00*1024.00));
124                          }
125 <                        printf("\033[%d;2H%-30s : %ld ", line_number++, "Network Interface packets in", network_stats->ipackets);
126 <                        printf("\033[%d;2H%-30s : %ld ", line_number++, "Network Interface packets out", network_stats->opackets);
127 <                        printf("\033[%d;2H%-30s : %ld ", line_number++, "Network Interface errors in", network_stats->ierrors);
128 <                        printf("\033[%d;2H%-30s : %ld ", line_number++, "Network Interface errors out", network_stats->oerrors);
129 <                        printf("\033[%d;2H%-30s : %ld ", line_number++, "Network Interface collisions", network_stats->collisions);
125 >                        printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface packets in", network_stats->ipackets);
126 >                        printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface packets out", network_stats->opackets);
127 >                        printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface errors in", network_stats->ierrors);
128 >                        printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface errors out", network_stats->oerrors);
129 >                        printf("\033[%d;2H%-30s : %lld ", line_number++, "Network Interface collisions", network_stats->collisions);
130                          printf("\033[%d;2H%-30s : %ld ", line_number++, "Network Interface systime", (long) network_stats->systime);
131  
132                          /* Add a blank line between interfaces */      
# Line 161 | Line 161 | int main(int argc, char **argv){
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  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines