[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.40

1.40    ! pyr         1: /*     $OpenBSD: netstat.h,v 1.39 2006/08/29 21:51:13 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.16      camield    42: int    bflag;          /* show bytes instead of packets */
1.1       deraadt    43: int    dflag;          /* show i/f dropped packets */
1.40    ! pyr        44: int    Fflag;          /* show routes whose gateways are in specified AF */
1.1       deraadt    45: int    gflag;          /* show group (multicast) routing or stats */
                     46: int    iflag;          /* show interfaces */
1.13      itojun     47: int    lflag;          /* show routing table with use and ref */
1.1       deraadt    48: int    mflag;          /* show memory stats */
                     49: int    nflag;          /* show addresses numerically */
                     50: int    pflag;          /* show given protocol */
1.35      markus     51: int    Pflag;          /* show given PCB */
1.19      brian      52: int    qflag;          /* only display non-zero values for output */
1.1       deraadt    53: int    rflag;          /* show routing tables (or routing stats) */
                     54: int    sflag;          /* show protocol statistics */
                     55: int    tflag;          /* show i/f watchdog timers */
1.11      peter      56: int    vflag;          /* be verbose */
1.34      reyk       57: int    Wflag;          /* show net80211 protocol statistics */
1.1       deraadt    58:
                     59: int    interval;       /* repeat interval for i/f stats */
                     60:
                     61: char   *interface;     /* desired i/f for stats, or NULL for all i/fs */
                     62:
                     63: int    af;             /* address family */
                     64:
1.2       deraadt    65: extern char *__progname; /* program name, from crt0.o */
1.1       deraadt    66:
                     67:
1.32      jaredy     68: int    kread(u_long addr, void *buf, int size);
1.20      millert    69: char   *plural(int);
                     70: char   *plurales(int);
1.1       deraadt    71:
1.20      millert    72: void   protopr(u_long, char *);
1.15      itojun     73: #ifdef INET6
1.20      millert    74: void   ip6protopr(u_long, char *);
1.15      itojun     75: #endif
1.20      millert    76: void   tcp_stats(u_long, char *);
                     77: void   udp_stats(u_long, char *);
                     78: void   ip_stats(u_long, char *);
                     79: void   icmp_stats(u_long, char *);
                     80: void   igmp_stats(u_long, char *);
1.29      mcbride    81: void   pim_stats(u_long, char *);
1.20      millert    82: void   ah_stats(u_long, char *);
                     83: void   esp_stats(u_long, char *);
                     84: void   ipip_stats(u_long, char *);
1.26      mcbride    85: void   carp_stats (u_long, char *);
1.27      mcbride    86: void   pfsync_stats (u_long, char *);
1.20      millert    87: void   etherip_stats(u_long, char *);
                     88: void   protopr(u_long, char *);
                     89: void   ipcomp_stats(u_long, char *);
1.35      markus     90:
                     91: void   tcp_dump(u_long);
1.1       deraadt    92:
1.17      provos     93: void   mbpr(u_long, u_long, u_long);
1.1       deraadt    94:
1.20      millert    95: void   hostpr(u_long, u_long);
                     96: void   impstats(u_long, u_long);
1.1       deraadt    97:
1.36      claudio    98: void   rt_stats(int, u_long);
                     99: void   pr_rthdr(int, int);
1.24      deraadt   100: void   pr_encaphdr(void);
1.20      millert   101: void   pr_family(int);
                    102: char   *ns_phost(struct sockaddr *);
                    103: char   *ipx_phost(struct sockaddr *);
1.13      itojun    104:
                    105: #ifdef INET6
                    106: struct in6_addr;
                    107: struct sockaddr_in6;
1.20      millert   108: void   ip6protopr(u_long, char *);
                    109: void   ip6_stats(u_long, char *);
                    110: void   ip6_ifstats(char *);
                    111: void   icmp6_stats(u_long, char *);
                    112: void   icmp6_ifstats(char *);
                    113: void   pim6_stats(u_long, char *);
1.22      itojun    114: void   rip6_stats(u_long, char *);
1.20      millert   115: void   mroute6pr(u_long, u_long, u_long);
                    116: void   mrt6_stats(u_long, u_long);
                    117: char   *routename6(struct sockaddr_in6 *);
1.36      claudio   118: char   *netname6(struct sockaddr_in6 *, struct sockaddr_in6 *);
1.13      itojun    119: #endif /*INET6*/
1.1       deraadt   120:
1.36      claudio   121: void   p_rttables(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);
1.20      millert   130: char   *ipx_print(struct sockaddr *);
1.39      claudio   131: void   routepr(u_long, u_long, u_long, u_long);
1.20      millert   132:
                    133: void   nsprotopr(u_long, char *);
                    134: void   spp_stats(u_long, char *);
                    135: void   idp_stats(u_long, char *);
                    136: void   nserr_stats(u_long, char *);
                    137:
                    138: void   ipxprotopr(u_long, char *);
                    139: void   spx_stats(u_long, char *);
                    140: void   ipx_stats(u_long, char *);
                    141: void   ipxerr_stats(u_long, char *);
                    142:
                    143: void   intpr(int, u_long);
                    144:
                    145: void   unixpr(u_long);
                    146:
                    147: void   esis_stats(u_long, char *);
                    148: void   clnp_stats(u_long, char *);
                    149: void   cltp_stats(u_long, char *);
                    150: void   iso_protopr(u_long, char *);
                    151: void   iso_protopr1(u_long, int);
                    152: void   tp_protopr(u_long, char *);
                    153: void   tp_inproto(u_long);
1.25      deraadt   154: void   tp_stats(u_long, char *);
1.20      millert   155:
                    156: void   mroutepr(u_long, u_long, u_long, u_long);
                    157: void   mrt_stats(u_long, u_long);
                    158:
                    159: void   atalkprotopr(u_long, char *);
                    160: void   ddp_stats(u_long, char *);
                    161: char   *atalk_print(const struct sockaddr *, int);
1.21      millert   162: char   *atalk_print2(const struct sockaddr *, const struct sockaddr *, int);