netstat.h
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. /* $OpenBSD: netstat.h,v 1.31 2005/02/10 14:25:08 itojun Exp $ */
  2. /* $NetBSD: netstat.h,v 1.6 1996/05/07 02:55:05 thorpej Exp $ */
  3. /*
  4.  * Copyright (c) 1992, 1993
  5.  * Regents of the University of California.  All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 2. Redistributions in binary form must reproduce the above copyright
  13.  *    notice, this list of conditions and the following disclaimer in the
  14.  *    documentation and/or other materials provided with the distribution.
  15.  * 3. Neither the name of the University nor the names of its contributors
  16.  *    may be used to endorse or promote products derived from this software
  17.  *    without specific prior written permission.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  20.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  23.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29.  * SUCH DAMAGE.
  30.  *
  31.  * from: @(#)netstat.h 8.2 (Berkeley) 1/4/94
  32.  */
  33. #ifdef HAVE_SYS_CDEFS_H
  34. #include <sys/cdefs.h>
  35. #endif
  36. /* What is the max length of a pointer printed with %p (including 0x)? */
  37. #define PLEN (LONG_BIT / 4 + 2)
  38. extern int Aflag; /* show addresses of protocol control block */
  39. extern int aflag; /* show all sockets (including servers) */
  40. extern int bflag; /* show bytes instead of packets */
  41. extern int dflag; /* show i/f dropped packets */
  42. extern int gflag; /* show group (multicast) routing or stats */
  43. extern int iflag; /* show interfaces */
  44. extern int lflag; /* show routing table with use and ref */
  45. extern int mflag; /* show memory stats */
  46. extern int nflag; /* show addresses numerically */
  47. extern int oflag; /* Open/Net-BSD style octet output */
  48. extern int pflag; /* show given protocol */
  49. extern int qflag; /* only display non-zero values for output */
  50. extern int rflag; /* show routing tables (or routing stats) */
  51. extern int Sflag; /* show source address in routing table */
  52. extern int sflag; /* show protocol statistics */
  53. extern int tflag; /* show i/f watchdog timers */
  54. extern int vflag; /* be verbose */
  55. extern int interval; /* repeat interval for i/f stats */
  56. extern char *intrface; /* desired i/f for stats, or NULL for all i/fs */
  57. extern int af; /* address family */
  58. extern char *__progname; /* program name, from crt0.o */
  59. const char *plural(int);
  60. const char *plurales(int);
  61. void tcpprotopr(const char *);
  62. void udpprotopr(const char *);
  63. void tcp_stats( const char *);
  64. void udp_stats( const char *);
  65. void ip_stats(  const char *);
  66. void icmp_stats(const char *);
  67. void tcp6protopr(const char *);
  68. void udp6protopr(const char *);
  69. void ip6_stats(  const char *);
  70. void icmp6_stats(const char *);
  71. void pr_rthdr(int);
  72. void pr_encaphdr(void);
  73. void pr_family(int);
  74. void rt_stats(void);
  75. char *routename(in_addr_t);
  76. char *netname(in_addr_t, in_addr_t);
  77. char *ns_print(struct sockaddr *);
  78. void routepr(void);
  79. void intpr(int);