[BACK]Return to show.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / netstat

Diff for /src/usr.bin/netstat/show.c between version 1.43 and 1.44

version 1.43, 2014/10/23 16:45:57 version 1.44, 2015/01/16 06:40:10
Line 30 
Line 30 
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
 #include <sys/param.h>  
 #include <sys/socket.h>  #include <sys/socket.h>
 #include <sys/sysctl.h>  #include <sys/sysctl.h>
   
Line 53 
Line 52 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   #include <limits.h>
   
 #include "netstat.h"  #include "netstat.h"
   
Line 563 
Line 563 
         }          }
 }  }
   
 static char line[MAXHOSTNAMELEN];  static char line[HOST_NAME_MAX+1];
 static char domain[MAXHOSTNAMELEN];  static char domain[HOST_NAME_MAX+1];
   
 void  void
 p_sockaddr_mpls(struct sockaddr *in, struct sockaddr *out, int flags, int width)  p_sockaddr_mpls(struct sockaddr *in, struct sockaddr *out, int flags, int width)

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44