1 /* $OpenBSD: netstat.h,v 1.66 2013/10/22 16:40:28 guenther Exp $ */ 2 /* $NetBSD: netstat.h,v 1.6 1996/05/07 02:55:05 thorpej Exp $ */ 3 4 /* 5 * Copyright (c) 1992, 1993 6 * Regents of the University of California. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. Neither the name of the University nor the names of its contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 * 32 * from: @(#)netstat.h 8.2 (Berkeley) 1/4/94 33 */ 34 35 #include <kvm.h> 36 37 /* What is the max length of a pointer printed with %p (including 0x)? */ 38 #define PLEN (LONG_BIT / 4 + 2) 39 40 int Aflag; /* show addresses of protocol control block */ 41 int aflag; /* show all sockets (including servers) */ 42 int Bflag; /* show TCP send and receive buffer sizes */ 43 int bflag; /* show bytes instead of packets */ 44 int dflag; /* show i/f dropped packets */ 45 int Fflag; /* show routes whose gateways are in specified AF */ 46 int gflag; /* show group (multicast) routing or stats */ 47 int hflag; /* print human numbers */ 48 int iflag; /* show interfaces */ 49 int lflag; /* show routing table with use and ref */ 50 int mflag; /* show memory stats */ 51 int nflag; /* show addresses numerically */ 52 int pflag; /* show given protocol */ 53 int Pflag; /* show given PCB */ 54 int qflag; /* only display non-zero values for output */ 55 int rflag; /* show routing tables (or routing stats) */ 56 int sflag; /* show protocol statistics */ 57 int tflag; /* show i/f watchdog timers */ 58 int vflag; /* be verbose */ 59 int Wflag; /* show net80211 protocol statistics */ 60 61 int interval; /* repeat interval for i/f stats */ 62 63 char *interface; /* desired i/f for stats, or NULL for all i/fs */ 64 65 int af; /* address family */ 66 67 extern char *__progname; /* program name, from crt0.o */ 68 69 extern int hideroot; 70 71 int kread(u_long addr, void *buf, int size); 72 char *plural(u_int64_t); 73 char *plurales(u_int64_t); 74 75 void protopr(u_long, char *, int, u_int, u_long); 76 void tcp_stats(char *); 77 void udp_stats(char *); 78 void ip_stats(char *); 79 void div_stats(char *); 80 void icmp_stats(char *); 81 void igmp_stats(char *); 82 void pim_stats(char *); 83 void ah_stats(char *); 84 void esp_stats(char *); 85 void ipip_stats(char *); 86 void carp_stats (char *); 87 void pfsync_stats (char *); 88 void pflow_stats (char *); 89 void etherip_stats(char *); 90 void ipcomp_stats(char *); 91 92 void net80211_ifstats(char *); 93 94 void socket_dump(u_long); 95 void unpcb_dump(u_long); 96 97 void mbpr(void); 98 99 void hostpr(u_long, u_long); 100 void impstats(u_long, u_long); 101 102 void rt_stats(void); 103 void pr_rthdr(int, int); 104 void pr_encaphdr(void); 105 void pr_family(int); 106 107 struct in6_addr; 108 struct sockaddr_in6; 109 void ip6_stats(char *); 110 void ip6_ifstats(char *); 111 void icmp6_stats(char *); 112 void icmp6_ifstats(char *); 113 void pim6_stats(char *); 114 void div6_stats(char *); 115 void rip6_stats(char *); 116 void mroute6pr(u_long, u_long); 117 void mrt6_stats(void); 118 char *routename6(struct sockaddr_in6 *); 119 char *netname6(struct sockaddr_in6 *, struct sockaddr_in6 *); 120 121 void p_rttables(int, u_int); 122 void p_flags(int, char *); 123 void p_addr(struct sockaddr *, struct sockaddr *, int); 124 void p_gwaddr(struct sockaddr *, int); 125 void p_sockaddr(struct sockaddr *, struct sockaddr *, int, int); 126 char *routename(struct sockaddr *); 127 char *routename4(in_addr_t); 128 char *netname(struct sockaddr *, struct sockaddr *); 129 char *netname4(in_addr_t, in_addr_t); 130 char *mpls_op(u_int32_t); 131 void routepr(u_long, u_long, u_long, u_long, u_int); 132 133 void nsprotopr(u_long, char *); 134 135 void intpr(int, int); 136 137 void unixpr(kvm_t *, u_long); 138 139 void mroutepr(u_long, u_long, u_long); 140 void mrt_stats(void); 141