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

Annotation of src/usr.bin/netstat/netstat.h, Revision 1.59

1.58      bluhm       1: /*     $OpenBSD: netstat.h,v 1.57 2010/10/11 12:33:36 claudio Exp $    */
1.2       deraadt     2: /*     $NetBSD: netstat.h,v 1.6 1996/05/07 02:55:05 thorpej Exp $      */
1.1       deraadt     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.
1.23      millert    16:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    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 <sys/cdefs.h>
1.8       millert    36:
1.9       millert    37: /* What is the max length of a pointer printed with %p (including 0x)? */
                     38: #define PLEN   (LONG_BIT / 4 + 2)
1.1       deraadt    39:
                     40: int    Aflag;          /* show addresses of protocol control block */
                     41: int    aflag;          /* show all sockets (including servers) */
1.59    ! jsing      42: int    Bflag;          /* show TCP send and receive buffer sizes */
1.16      camield    43: int    bflag;          /* show bytes instead of packets */
1.1       deraadt    44: int    dflag;          /* show i/f dropped packets */
1.40      pyr        45: int    Fflag;          /* show routes whose gateways are in specified AF */
1.1       deraadt    46: int    gflag;          /* show group (multicast) routing or stats */
                     47: int    iflag;          /* show interfaces */
1.13      itojun     48: int    lflag;          /* show routing table with use and ref */
1.1       deraadt    49: int    mflag;          /* show memory stats */
                     50: int    nflag;          /* show addresses numerically */
                     51: int    pflag;          /* show given protocol */
1.35      markus     52: int    Pflag;          /* show given PCB */
1.19      brian      53: int    qflag;          /* only display non-zero values for output */
1.1       deraadt    54: int    rflag;          /* show routing tables (or routing stats) */
                     55: int    sflag;          /* show protocol statistics */
                     56: int    tflag;          /* show i/f watchdog timers */
1.11      peter      57: int    vflag;          /* be verbose */
1.34      reyk       58: int    Wflag;          /* show net80211 protocol statistics */
1.1       deraadt    59:
                     60: int    interval;       /* repeat interval for i/f stats */
                     61:
                     62: char   *interface;     /* desired i/f for stats, or NULL for all i/fs */
                     63:
                     64: int    af;             /* address family */
                     65:
1.2       deraadt    66: extern char *__progname; /* program name, from crt0.o */
1.1       deraadt    67:
                     68:
1.32      jaredy     69: int    kread(u_long addr, void *buf, int size);
1.49      claudio    70: char   *plural(u_int64_t);
                     71: char   *plurales(u_int64_t);
1.1       deraadt    72:
1.58      bluhm      73: void   protopr(u_long, char *, int, u_long);
1.45      deraadt    74: void   tcp_stats(char *);
                     75: void   udp_stats(char *);
                     76: void   ip_stats(char *);
1.51      michele    77: void   div_stats(char *);
1.45      deraadt    78: void   icmp_stats(char *);
                     79: void   igmp_stats(char *);
                     80: void   pim_stats(char *);
                     81: void   ah_stats(char *);
                     82: void   esp_stats(char *);
                     83: void   ipip_stats(char *);
                     84: void   carp_stats (char *);
                     85: void   pfsync_stats (char *);
1.48      gollo      86: void   pflow_stats (char *);
1.45      deraadt    87: void   etherip_stats(char *);
                     88: void   ipcomp_stats(char *);
                     89:
1.42      ray        90: void   net80211_ifstats(char *);
1.35      markus     91:
1.58      bluhm      92: void   socket_dump(u_long);
                     93: void   unpcb_dump(u_long);
1.1       deraadt    94:
1.44      deraadt    95: void   mbpr(void);
1.1       deraadt    96:
1.20      millert    97: void   hostpr(u_long, u_long);
                     98: void   impstats(u_long, u_long);
1.1       deraadt    99:
1.46      claudio   100: void   rt_stats(void);
1.36      claudio   101: void   pr_rthdr(int, int);
1.24      deraadt   102: void   pr_encaphdr(void);
1.20      millert   103: void   pr_family(int);
1.13      itojun    104:
                    105: struct in6_addr;
                    106: struct sockaddr_in6;
1.45      deraadt   107: void   ip6_stats(char *);
1.20      millert   108: void   ip6_ifstats(char *);
1.45      deraadt   109: void   icmp6_stats(char *);
1.20      millert   110: void   icmp6_ifstats(char *);
1.45      deraadt   111: void   pim6_stats(char *);
1.52      michele   112: void   div6_stats(char *);
1.45      deraadt   113: void   rip6_stats(char *);
                    114: void   mroute6pr(u_long, u_long);
                    115: void   mrt6_stats(void);
1.20      millert   116: char   *routename6(struct sockaddr_in6 *);
1.36      claudio   117: char   *netname6(struct sockaddr_in6 *, struct sockaddr_in6 *);
1.1       deraadt   118:
1.57      claudio   119: void   p_rttables(int, u_int, int);
1.36      claudio   120: void   p_flags(int, char *);
                    121: void   p_addr(struct sockaddr *, struct sockaddr *, int);
                    122: void   p_gwaddr(struct sockaddr *, int);
                    123: void   p_sockaddr(struct sockaddr *, struct sockaddr *, int, int);
                    124: char   *routename(struct sockaddr *);
                    125: char   *routename4(in_addr_t);
                    126: char   *netname(struct sockaddr *, struct sockaddr *);
                    127: char   *netname4(in_addr_t, in_addr_t);
1.54      claudio   128: char   *mpls_op(u_int32_t);
1.50      claudio   129: void   routepr(u_long, u_long, u_long, u_long, u_int);
1.20      millert   130:
                    131: void   nsprotopr(u_long, char *);
                    132:
1.53      tedu      133: void   intpr(int, int);
1.20      millert   134:
1.58      bluhm     135: void   unixpr(u_long, u_long);
1.20      millert   136:
1.45      deraadt   137: void   mroutepr(u_long, u_long, u_long);
                    138: void   mrt_stats(void);
1.20      millert   139:
1.58      bluhm     140: void   atalkprotopr(u_long, char *, int, u_long);
1.45      deraadt   141: void   ddp_stats(char *);
1.20      millert   142: char   *atalk_print(const struct sockaddr *, int);