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

SNMP编程

开发平台:

Unix_Linux

  1. #if defined(CAN_USE_SYSCTL)
  2. #include <stddef.h>
  3. #include <stdlib.h>
  4. #include <syslog.h>
  5. #include <time.h>
  6. #include <sys/types.h>
  7. #include <sys/param.h>
  8. #include <sys/queue.h>
  9. #include <sys/socket.h>
  10. #include <sys/sysctl.h>
  11. #if HAVE_SYS_TIME_H
  12. #include <sys/time.h>
  13. #endif
  14. #include <net/if_dl.h>
  15. #if HAVE_SYS_STREAM_H
  16. #include <sys/stream.h>
  17. #endif
  18. #include <net/route.h>
  19. #include <netinet/in.h>
  20. #include <net-snmp/net-snmp-includes.h>
  21. #include <net-snmp/agent/net-snmp-agent-includes.h>
  22. #include "ip.h"
  23. #include "kernel.h"
  24. #include "interfaces.h"
  25. #include "struct.h"
  26. #include "util_funcs.h"
  27. #else /* !CAN_USE_SYSCTL */
  28. #define GATEWAY                 /* MultiNet is always configured this way! */
  29. #include <stdio.h>
  30. #include <sys/types.h>
  31. #if HAVE_SYS_PARAM_H
  32. #include <sys/param.h>
  33. #endif
  34. #if HAVE_SYS_SOCKET_H
  35. #include <sys/socket.h>
  36. #endif
  37. #if TIME_WITH_SYS_TIME
  38. # if defined (WIN32) || defined (cygwin)
  39. #  include <sys/timeb.h>
  40. # else
  41. # include <sys/time.h>
  42. # endif
  43. # include <time.h>
  44. #else
  45. # if HAVE_SYS_TIME_H
  46. #  include <sys/time.h>
  47. # else
  48. #  include <time.h>
  49. # endif
  50. #endif
  51. #if HAVE_SYS_SELECT_H
  52. #include <sys/select.h>
  53. #endif
  54. #if HAVE_NETINET_IN_H
  55. #include <netinet/in.h>
  56. #endif
  57. #if HAVE_ARPA_INET_H
  58. #include <arpa/inet.h>
  59. #endif
  60. #if HAVE_SYSLOG_H
  61. #include <syslog.h>
  62. #endif
  63. #if HAVE_MACHINE_PARAM_H
  64. #include <machine/param.h>
  65. #endif
  66. #if HAVE_SYS_MBUF_H
  67. #include <sys/mbuf.h>
  68. #endif
  69. #if HAVE_NET_IF_H
  70. #include <net/if.h>
  71. #endif
  72. #ifdef HAVE_NET_IF_VAR_H
  73. #include <net/if_var.h>
  74. #endif
  75. #if HAVE_SYS_HASHING_H
  76. #include <sys/hashing.h>
  77. #endif
  78. #if HAVE_NETINET_IN_VAR_H
  79. #include <netinet/in_var.h>
  80. #endif
  81. #define KERNEL                  /* to get routehash and RTHASHSIZ */
  82. #if HAVE_SYS_STREAM_H
  83. #include <sys/stream.h>
  84. #endif
  85. #if HAVE_NET_ROUTE_H
  86. #include <net/route.h>
  87. #endif
  88. #undef KERNEL
  89. #ifdef RTENTRY_4_4
  90. #ifndef STRUCT_RTENTRY_HAS_RT_UNIT
  91. #define rt_unit rt_refcnt       /* Reuse this field for device # */
  92. #endif
  93. #ifndef STRUCT_RTENTRY_HAS_RT_DST
  94. #define rt_dst rt_nodes->rn_key
  95. #endif
  96. #else                           /* RTENTRY_4_3 */
  97. #ifndef STRUCT_RTENTRY_HAS_RT_DST
  98. #define rt_dst rt_nodes->rn_key
  99. #endif
  100. #ifndef STRUCT_RTENTRY_HAS_RT_HASH
  101. #define rt_hash rt_pad1
  102. #endif
  103. #ifndef STRUCT_RTENTRY_HAS_RT_REFCNT
  104. #ifndef hpux10
  105. #define rt_refcnt rt_pad2
  106. #endif
  107. #endif
  108. #ifndef STRUCT_RTENTRY_HAS_RT_USE
  109. #define rt_use rt_pad3
  110. #endif
  111. #ifndef STRUCT_RTENTRY_HAS_RT_UNIT
  112. #define rt_unit rt_refcnt       /* Reuse this field for device # */
  113. #endif
  114. #endif
  115. #ifndef NULL
  116. #define NULL 0
  117. #endif
  118. #if HAVE_KVM_OPENFILES
  119. #include <fcntl.h>
  120. #endif
  121. #if HAVE_KVM_H
  122. #include <kvm.h>
  123. #endif
  124. #if HAVE_STRING_H
  125. #include <string.h>
  126. #else
  127. #include <strings.h>
  128. #endif
  129. #if HAVE_STDLIB_H
  130. #include <stdlib.h>
  131. #endif
  132. #if HAVE_INET_MIB2_H
  133. #include <inet/mib2.h>
  134. #endif
  135. #if HAVE_SYS_SYSCTL_H
  136. #include <sys/sysctl.h>
  137. #endif
  138. #if HAVE_NET_IF_DL_H
  139. #ifndef dynix
  140. #include <net/if_dl.h>
  141. #else
  142. #include <sys/net/if_dl.h>
  143. #endif
  144. #endif
  145. #if HAVE_WINSOCK_H
  146. #include <winsock.h>
  147. #endif
  148. #if HAVE_NLIST_H
  149. #include <nlist.h>
  150. #endif
  151. #if solaris2
  152. #include "kernel_sunos5.h"
  153. #endif
  154. #ifdef HAVE_SYS_SYSCTL_H
  155. # ifdef CTL_NET
  156. #  ifdef PF_ROUTE
  157. #   ifdef NET_RT_DUMP
  158. #    define USE_SYSCTL_ROUTE_DUMP
  159. #   endif
  160. #  endif
  161. # endif
  162. #endif
  163. #if HAVE_DMALLOC_H
  164. #include <dmalloc.h>
  165. #endif
  166. #ifdef cygwin
  167. #include <windows.h>
  168. #endif
  169. #endif /* !CAN_USE_SYSCTL */