netShow.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:2k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* netShow.h - header file for netShow.c */
  2. /* Copyright 1984-1994 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01i,16jan01,zhu  SPR62489 add 4 functions declaration
  7. 01h,12sep94,dzb  added tcpDebugShow() declaration (SPR #1552).
  8. 01g,22sep92,rrr  added support for c++
  9. 01f,27jul92,elh  Moved hostShow and routeShow here.
  10. 01e,04jul92,jcf  cleaned up.
  11. 01d,11jun92,elh  moved arpShow here from arpLib.
  12. 01c,26may92,rrr  the tree shuffle
  13. 01b,04oct91,rrr  passed through the ansification filter
  14.   -fixed #else and #endif
  15.   -changed VOID to void
  16.   -changed copyright notice
  17. 01a,05oct90,shl created.
  18. */
  19. #ifndef __INCnetShowh
  20. #define __INCnetShowh
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /* function declarations */
  25. #if defined(__STDC__) || defined(__cplusplus)
  26. extern void  arptabShow (void);
  27. extern void  arpShow (void);
  28. extern void  icmpstatShow (void);
  29. extern void  ifShow (char *ifName);
  30. extern void  inetstatShow (void);
  31. extern void  ipstatShow (BOOL zero);
  32. extern void  mbufShow (void);
  33. extern void  netShowInit (void);
  34. extern void  igmpShowInit (void); 
  35. extern void  icmpShowInit (void); 
  36. extern void  tcpShowInit (void); 
  37. extern void  tcpDebugShow (int numPrint, int verbose);
  38. extern void  tcpstatShow (void);
  39. extern void  udpShowInit (void); 
  40. extern void  udpstatShow (void);
  41. extern void  routeShow (void);
  42. extern void  hostShow (void);
  43. extern void     netStackSysPoolShow (void);
  44. extern void     netStackDataPoolShow (void);
  45. extern void     routestatShow (void);
  46. #else /* __STDC__ */
  47. extern void  arptabShow ();
  48. extern void  arpShow ();
  49. extern void  icmpstatShow ();
  50. extern void  ifShow ();
  51. extern void  inetstatShow ();
  52. extern void  ipstatShow ();
  53. extern void  mbufShow ();
  54. extern void  netShowInit ();
  55. extern void  igmpShowInit ();
  56. extern void  icmpShowInit ();
  57. extern void  tcpShowInit ();
  58. extern void  tcpDebugShow ();
  59. extern void  tcpstatShow ();
  60. extern void  udpShowInit ();
  61. extern void  udpstatShow ();
  62. extern void  routeShow ();
  63. extern void  hostShow ();
  64. extern void     netStackSysPoolShow ();
  65. extern void     netStackDataPoolShow ();
  66. extern void     routestatShow ();
  67. #endif /* __STDC__ */
  68. #ifdef __cplusplus
  69. }
  70. #endif
  71. #endif /* __INCnetShowh */