Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

299 lines
8.6 KiB

  1. #define DVMRPLOG_BASE 41000
  2. #define DVMRPLOG_INIT_CRITSEC_FAILED (DVMRPLOG_BASE + 1)
  3. /*
  4. * DVMRP was unable to initialize a critical section.
  5. * The data is the exception code.
  6. */
  7. #define DVMRPLOG_HEAP_CREATE_FAILED (DVMRPLOG_BASE + 2)
  8. /*
  9. * DVMRP was unable to create a heap.
  10. * The data is the error code.
  11. */
  12. #define DVMRPLOG_HEAP_ALLOC_FAILED (DVMRPLOG_BASE + 3)
  13. /*
  14. * DVMRP was unable to allocate memory from its heap.
  15. * The data is the error code.
  16. */
  17. #define DVMRPLOG_DVMRP_ALREADY_STARTED (DVMRPLOG_BASE + 4)
  18. /*
  19. * DVMRP received a start request when it was already running.
  20. */
  21. #define DVMRPLOG_WSASTARTUP_FAILED (DVMRPLOG_BASE + 5)
  22. /*
  23. * DVMRP was unable to start Windows Sockets.
  24. * The data is the error code.
  25. */
  26. #define DVMRPLOG_CREATE_RWL_FAILED (DVMRPLOG_BASE + 6)
  27. /*
  28. * DVMRP was unable to create a synchronization object.
  29. * The data is the error code.
  30. */
  31. #define DVMRPLOG_CREATE_EVENT_FAILED (DVMRPLOG_BASE + 7)
  32. /*
  33. * DVMRP was unable to create an event.
  34. * The data is the error code.
  35. */
  36. #define DVMRPLOG_CREATE_SEMAPHORE_FAILED (DVMRPLOG_BASE + 8)
  37. /*
  38. * DVMRP was unable to create a semaphore.
  39. * The data is the error code.
  40. */
  41. #define DVMRPLOG_CREATE_SOCKET_FAILED (DVMRPLOG_BASE + 9)
  42. /*
  43. * DVMRP was unable to create a socket.
  44. * The data is the error code.
  45. */
  46. #define DVMRPLOG_DVMRP_STARTED (DVMRPLOG_BASE + 10)
  47. /*
  48. * DVMRP has started successfully.
  49. */
  50. #define DVMRPLOG_QUEUE_WORKER_FAILED (DVMRPLOG_BASE + 11)
  51. /*
  52. * DVMRP could not schedule a task to be executed.
  53. * This may have been caused by a memory allocation failure.
  54. * The data is the error code.
  55. */
  56. #define DVMRPLOG_RECVFROM_FAILED (DVMRPLOG_BASE + 12)
  57. /*
  58. * DVMRP was unable to receive an incoming message
  59. * on the local interface with IP address %1.
  60. * The data is the error code.
  61. */
  62. #define DVMRPLOG_PACKET_TOO_SMALL (DVMRPLOG_BASE + 13)
  63. /*
  64. * DVMRP received a packet which was smaller than the minimum size
  65. * allowed for DVMRP packets. The packet has been discarded.
  66. * It was received on the local interface with IP address %1,
  67. * and it came from the neighboring router with IP address %2.
  68. */
  69. #define DVMRPLOG_PACKET_VERSION_INVALID (DVMRPLOG_BASE + 14)
  70. /*
  71. * DVMRP received a packet with an invalid version in its header.
  72. * The packet has been discarded. It was received on the local interface
  73. * with IP address %1, and it came from the neighboring router
  74. * with IP address %2.
  75. */
  76. #define DVMRPLOG_PACKET_HEADER_CORRUPT (DVMRPLOG_BASE + 15)
  77. /*
  78. * DVMRP received a packet with an invalid header. The packet has been
  79. * discarded. It was received on the local interface with IP address %1,
  80. * and it came from the neighboring router with IP address %2.
  81. */
  82. #define DVMRPLOG_QUERY_FROM_RAS_CLIENT (DVMRPLOG_BASE + 16)
  83. /*
  84. * Router received a general query from RAS Client(%1) on interface
  85. * with IP address %2.
  86. * RAS clients are not supposed to send queries.
  87. */
  88. #define DVMRPLOG_VERSION1_QUERY (DVMRPLOG_BASE + 17)
  89. /*
  90. * Router configured for version-2. Version-1 router with IP Address %1
  91. * exists on the interface with IP address %2.
  92. */
  93. #define DVMRPLOG_VERSION2_QUERY (DVMRPLOG_BASE + 18)
  94. /*
  95. * Router configured for version-1. Version-2 router with IP Address %1
  96. * exists on the interface with IP address %2.
  97. */
  98. #define DVMRPLOG_SENDTO_FAILED (DVMRPLOG_BASE + 19)
  99. /*
  100. * DVMRP was unable to send a packet from the interface with IP address %1
  101. * to the IP address %2.
  102. * The data is the error code.
  103. */
  104. #define DVMRPLOG_PACKET_VERSION_MISMATCH (DVMRPLOG_BASE + 20)
  105. /*
  106. * DVMRP discarded a version %1 packet received on the interface
  107. * with IP address %2 from a neighbor with IP address %3.
  108. * The above interface is configured to accept only version %4 packets.
  109. */
  110. #define DVMRPLOG_ENUM_NETWORK_EVENTS_FAILED (DVMRPLOG_BASE + 21)
  111. /*
  112. * DVMRPv2 was unable to enumerate network events on the local interface
  113. * with IP address %1.
  114. * The data is the error code.
  115. */
  116. #define DVMRPLOG_INPUT_RECORD_ERROR (DVMRPLOG_BASE + 22)
  117. /*
  118. * DVMRPv2 detected an error on the local interface with IP address %1.
  119. * The error occurred while the interface was receiving packets.
  120. * The data is the error code.
  121. */
  122. #define DVMRPLOG_EVENTSELECT_FAILED (DVMRPLOG_BASE + 23)
  123. /*
  124. * DVMRPv2 was unable to request notification of events
  125. * on the socket for the local interface with IP address %1.
  126. * The data is the error code.
  127. */
  128. #define DVMRPLOG_CREATE_SOCKET_FAILED_2 (DVMRPLOG_BASE + 24)
  129. /*
  130. * DVMRP was unable to create a socket for the local interface
  131. * with IP address %1.
  132. * The data is the error code.
  133. */
  134. #define DVMRPLOG_BIND_FAILED (DVMRPLOG_BASE + 25)
  135. /*
  136. * DVMRP could not bind to port 520 on the socket for
  137. * the local interface with IP address %1.
  138. * The data is the error code.
  139. */
  140. #define DVMRPLOG_CONNECT_FAILED (DVMRPLOG_BASE + 26)
  141. /*
  142. * DVMRP could not connect Ras Client %1 to the interface with
  143. * index %2.
  144. * The data is the error code.
  145. */
  146. #define DVMRPLOG_DISCONNECT_FAILED (DVMRPLOG_BASE + 27)
  147. /*
  148. * DVMRP could not disconnect Ras Client %1 from the interface with
  149. * index %2.
  150. * The data is the error code.
  151. */
  152. #define DVMRPLOG_SET_MCAST_IF_FAILED (DVMRPLOG_BASE + 28)
  153. /*
  154. * DVMRP could not request multicasting on the local interface
  155. * with IP address %1.
  156. * The data is the error code.
  157. */
  158. #define DVMRPLOG_SET_ROUTER_ALERT_FAILED (DVMRPLOG_BASE + 29)
  159. /*
  160. * DVMRP could not set router alert option on the local interface
  161. * with IP address %1.
  162. * The data is the error code.
  163. */
  164. #define DVMRPLOG_SET_HDRINCL_FAILED (DVMRPLOG_BASE + 30)
  165. /*
  166. * DVMRP could not set the IP header include option on interface
  167. * with IP address %1.
  168. * The data is the error code.
  169. */
  170. #define DVMRPLOG_JOIN_GROUP_FAILED (DVMRPLOG_BASE + 31)
  171. /*
  172. * DVMRP could not join the multicast group %1
  173. * on the local interface with IP address %2.
  174. * The data is the error code.
  175. */
  176. #define DVMRPLOG_LEAVE_GROUP_FAILED (DVMRPLOG_BASE + 32)
  177. /*
  178. * DVMRP could not leave the multicast group %1
  179. * on the local interface with IP address %2.
  180. * The data is the error code.
  181. */
  182. #define DVMRPLOG_PROTO_ALREADY_STOPPING (DVMRPLOG_BASE + 33)
  183. /*
  184. * StopProtocol() called to stop DVMRP when it is
  185. * already being stopped.
  186. * The data is the error code.
  187. */
  188. #define DVMRPLOG_PROXY_IF_EXISTS (DVMRPLOG_BASE + 34)
  189. /*
  190. * AddInterface() called to add an DVMRP Proxy interface.
  191. * DVMRP proxy already owns another interface.
  192. * The data is the error code.
  193. */
  194. #define DVMRPLOG_RAS_IF_EXISTS (DVMRPLOG_BASE + 35)
  195. /*
  196. * AddInterface() called to add an DVMRP Ras interface.
  197. * Ras Server cannot exist on multiple interfaces.
  198. * The data is the error code.
  199. */
  200. #define DVMRPLOG_MGM_REGISTER_FAILED (DVMRPLOG_BASE + 36)
  201. /*
  202. * DVMRP Router failed to register with MGM.
  203. * The data is the error code.
  204. */
  205. #define DVMRPLOG_MGM_PROXY_REGISTER_FAILED (DVMRPLOG_BASE + 37)
  206. /*
  207. * DVMRP Proxy failed to register with MGM.
  208. * The data is the error code.
  209. */
  210. #define DVMRPLOG_MGM_TAKE_IF_OWNERSHIP_FAILED (DVMRPLOG_BASE + 38)
  211. /*
  212. * MgmTakeInterfaceOwnership() failed.
  213. * The data is the error code.
  214. */
  215. #define DVMRPLOG_ROBUSTNESS_VARIABLE_EQUAL_1 (DVMRPLOG_BASE + 39)
  216. /*
  217. * The robustness variable is being set to 1 for DVMRP router
  218. * on Interface %1.
  219. * You should avoid setting it to 1.
  220. */
  221. #define DVMRPLOG_INVALID_VALUE (DVMRPLOG_BASE + 40)
  222. /*
  223. * One of the values passed to DVMRP is invalid.
  224. * %1
  225. */
  226. #define DVMRPLOG_REGISTER_WAIT_SERVER_FAILED (DVMRPLOG_BASE + 41)
  227. /*
  228. * The wait-events-timers could not be registered with the
  229. * wait server thread. Alertable threads might not have
  230. * been initialized in Rtutils.
  231. * The data is the error code.
  232. */
  233. #define DVMRPLOG_DVMRP_STOPPED (DVMRPLOG_BASE + 42)
  234. /*
  235. * DVMRP has stopped.
  236. */
  237. #define DVMRPLOG_CAN_NOT_COMPLETE (DVMRPLOG_BASE + 43)
  238. /*
  239. * Fatal error. Could not complete.
  240. * The data is the error code.
  241. */
  242. #define DVMRPLOG_INVALID_VERSION (DVMRPLOG_BASE + 44)
  243. /*
  244. * The version field %1 in DVMRP config is invalid.
  245. * Delete and create the DVMRP config again.
  246. * The data is the error code.
  247. */