aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/netstat.c34
1 files changed, 15 insertions, 19 deletions
diff --git a/networking/netstat.c b/networking/netstat.c
index 6e7cc5e7b..00b58228e 100644
--- a/networking/netstat.c
+++ b/networking/netstat.c
@@ -45,7 +45,7 @@ extern void displayroutes(int noresolve, int netstatfmt);
45#define NETSTAT_RAW 0x40 45#define NETSTAT_RAW 0x40
46#define NETSTAT_UNIX 0x80 46#define NETSTAT_UNIX 0x80
47 47
48int flags = NETSTAT_CONNECTED | 48static int flags = NETSTAT_CONNECTED |
49 NETSTAT_TCP | NETSTAT_UDP | NETSTAT_RAW | NETSTAT_UNIX; 49 NETSTAT_TCP | NETSTAT_UDP | NETSTAT_RAW | NETSTAT_UNIX;
50 50
51#define PROGNAME_WIDTHs PROGNAME_WIDTH1(PROGNAME_WIDTH) 51#define PROGNAME_WIDTHs PROGNAME_WIDTH1(PROGNAME_WIDTH)
@@ -68,7 +68,7 @@ enum {
68 TCP_CLOSING /* now a valid state */ 68 TCP_CLOSING /* now a valid state */
69}; 69};
70 70
71static const char *tcp_state[] = 71static const char * const tcp_state[] =
72{ 72{
73 "", 73 "",
74 "ESTABLISHED", 74 "ESTABLISHED",
@@ -142,7 +142,8 @@ static void snprint_ip_port(char *ip_port, int size, struct sockaddr *addr, int
142static void tcp_do_one(int lnr, const char *line) 142static void tcp_do_one(int lnr, const char *line)
143{ 143{
144 char local_addr[64], rem_addr[64]; 144 char local_addr[64], rem_addr[64];
145 char *state_str, more[512]; 145 const char *state_str;
146 char more[512];
146 int num, local_port, rem_port, d, state, timer_run, uid, timeout; 147 int num, local_port, rem_port, d, state, timer_run, uid, timeout;
147 struct sockaddr_in localaddr, remaddr; 148 struct sockaddr_in localaddr, remaddr;
148 unsigned long rxq, txq, time_len, retr, inode; 149 unsigned long rxq, txq, time_len, retr, inode;
@@ -168,10 +169,10 @@ static void tcp_do_one(int lnr, const char *line)
168 } 169 }
169 170
170 if (num < 10) { 171 if (num < 10) {
171 error_msg("warning, got bogus tcp line.\n"); 172 error_msg("warning, got bogus tcp line.");
172 return; 173 return;
173 } 174 }
174 state_str=(char*)tcp_state[state]; 175 state_str = tcp_state[state];
175 if ((rem_port && (flags&NETSTAT_CONNECTED)) || 176 if ((rem_port && (flags&NETSTAT_CONNECTED)) ||
176 (!rem_port && (flags&NETSTAT_LISTENING))) 177 (!rem_port && (flags&NETSTAT_LISTENING)))
177 { 178 {
@@ -218,7 +219,7 @@ static void udp_do_one(int lnr, const char *line)
218 } 219 }
219 220
220 if (num < 10) { 221 if (num < 10) {
221 error_msg("warning, got bogus udp line.\n"); 222 error_msg("warning, got bogus udp line.");
222 return; 223 return;
223 } 224 }
224 switch (state) { 225 switch (state) {
@@ -282,7 +283,7 @@ static void raw_do_one(int lnr, const char *line)
282 } 283 }
283 284
284 if (num < 10) { 285 if (num < 10) {
285 error_msg("warning, got bogus raw line.\n"); 286 error_msg("warning, got bogus raw line.");
286 return; 287 return;
287 } 288 }
288 state_str=itoa(state); 289 state_str=itoa(state);
@@ -325,7 +326,7 @@ static void unix_do_one(int nr, const char *line)
325 num = sscanf(line, "%p: %lX %lX %lX %X %X %d %s", 326 num = sscanf(line, "%p: %lX %lX %lX %X %X %d %s",
326 &d, &refcnt, &proto, &unix_flags, &type, &state, &inode, path); 327 &d, &refcnt, &proto, &unix_flags, &type, &state, &inode, path);
327 if (num < 6) { 328 if (num < 6) {
328 error_msg("warning, got bogus unix line.\n"); 329 error_msg("warning, got bogus unix line.");
329 return; 330 return;
330 } 331 }
331 if (!(has & HAS_INODE)) 332 if (!(has & HAS_INODE))
@@ -432,22 +433,19 @@ static void unix_do_one(int nr, const char *line)
432#define _PATH_PROCNET_RAW "/proc/net/raw" 433#define _PATH_PROCNET_RAW "/proc/net/raw"
433#define _PATH_PROCNET_UNIX "/proc/net/unix" 434#define _PATH_PROCNET_UNIX "/proc/net/unix"
434 435
435static int do_info(char *file, char *name, void (*proc)(int, const char *)) 436static void do_info(const char *file, const char *name, void (*proc)(int, const char *))
436{ 437{
437 char buffer[8192]; 438 char buffer[8192];
438 int rc = 0;
439 int lnr = 0; 439 int lnr = 0;
440 FILE *procinfo; 440 FILE *procinfo;
441 441
442 procinfo = fopen((file), "r"); 442 procinfo = fopen(file, "r");
443 if (procinfo == NULL) { 443 if (procinfo == NULL) {
444 if (errno != ENOENT) { 444 if (errno != ENOENT) {
445 perror((file)); 445 perror(file);
446 return -1; 446 } else {
447 error_msg("no support for `%s' on this system.", name);
447 } 448 }
448 error_msg("%s: no support for `%s' on this system.\n",
449 "netstat", (name));
450 rc = 1;
451 } else { 449 } else {
452 do { 450 do {
453 if (fgets(buffer, sizeof(buffer), procinfo)) 451 if (fgets(buffer, sizeof(buffer), procinfo))
@@ -455,7 +453,6 @@ static int do_info(char *file, char *name, void (*proc)(int, const char *))
455 } while (!feof(procinfo)); 453 } while (!feof(procinfo));
456 fclose(procinfo); 454 fclose(procinfo);
457 } 455 }
458 return rc;
459} 456}
460 457
461/* 458/*
@@ -505,8 +502,7 @@ int netstat_main(int argc, char **argv)
505 displayroutes ( flags & NETSTAT_NUMERIC, !extended ); 502 displayroutes ( flags & NETSTAT_NUMERIC, !extended );
506 return 0; 503 return 0;
507#else 504#else
508 printf( "-r (display routing table) is not compiled in.\n" ); 505 error_msg_and_die( "-r (display routing table) is not compiled in." );
509 return 1;
510#endif 506#endif
511 } 507 }
512 508