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.

306 lines
6.9 KiB

  1. //
  2. // Net error file for basename QOSMLOG_BASE = 43000
  3. //
  4. //
  5. // Values are 32 bit values layed out as follows:
  6. //
  7. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  8. // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  9. // +---+-+-+-----------------------+-------------------------------+
  10. // |Sev|C|R| Facility | Code |
  11. // +---+-+-+-----------------------+-------------------------------+
  12. //
  13. // where
  14. //
  15. // Sev - is the severity code
  16. //
  17. // 00 - Success
  18. // 01 - Informational
  19. // 10 - Warning
  20. // 11 - Error
  21. //
  22. // C - is the Customer code flag
  23. //
  24. // R - is a reserved bit
  25. //
  26. // Facility - is the facility code
  27. //
  28. // Code - is the facility's status code
  29. //
  30. //
  31. // Define the facility codes
  32. //
  33. //
  34. // Define the severity codes
  35. //
  36. //
  37. // MessageId: QOSMLOG_INIT_CRITSEC_FAILED
  38. //
  39. // MessageText:
  40. //
  41. // QOSMGR was unable to initialize a critical section.
  42. // The data is the exception code.
  43. //
  44. #define QOSMLOG_INIT_CRITSEC_FAILED 0x0000A7F9L
  45. //
  46. // MessageId: QOSMLOG_CREATE_SEMAPHORE_FAILED
  47. //
  48. // MessageText:
  49. //
  50. // QOSMGR was unable to create a semaphore.
  51. // The data is the error code.
  52. //
  53. #define QOSMLOG_CREATE_SEMAPHORE_FAILED 0x0000A7FAL
  54. //
  55. // MessageId: QOSMLOG_CREATE_EVENT_FAILED
  56. //
  57. // MessageText:
  58. //
  59. // QOSMGR was unable to create an event.
  60. // The data is the error code.
  61. //
  62. #define QOSMLOG_CREATE_EVENT_FAILED 0x0000A7FBL
  63. //
  64. // MessageId: QOSMLOG_CREATE_RWL_FAILED
  65. //
  66. // MessageText:
  67. //
  68. // QOSMGR was unable to create a synchronization object.
  69. // The data is the error code.
  70. //
  71. #define QOSMLOG_CREATE_RWL_FAILED 0x0000A7FCL
  72. //
  73. // MessageId: QOSMLOG_HEAP_CREATE_FAILED
  74. //
  75. // MessageText:
  76. //
  77. // QOSMGR was unable to create a heap.
  78. // The data is the error code.
  79. //
  80. #define QOSMLOG_HEAP_CREATE_FAILED 0x0000A7FDL
  81. //
  82. // MessageId: QOSMLOG_HEAP_ALLOC_FAILED
  83. //
  84. // MessageText:
  85. //
  86. // QOSMGR was unable to allocate memory from its heap.
  87. // The data is the error code.
  88. //
  89. #define QOSMLOG_HEAP_ALLOC_FAILED 0x0000A7FEL
  90. //
  91. // MessageId: QOSMLOG_CREATE_THREAD_FAILED
  92. //
  93. // MessageText:
  94. //
  95. // QOSMGR was unable to create a thread.
  96. // The data is the error code.
  97. //
  98. #define QOSMLOG_CREATE_THREAD_FAILED 0x0000A7FFL
  99. //
  100. // MessageId: QOSMLOG_WSASTARTUP_FAILED
  101. //
  102. // MessageText:
  103. //
  104. // QOSMGR was unable to start Windows Sockets.
  105. // The data is the error code.
  106. //
  107. #define QOSMLOG_WSASTARTUP_FAILED 0x0000A800L
  108. //
  109. // MessageId: QOSMLOG_CREATE_SOCKET_FAILED
  110. //
  111. // MessageText:
  112. //
  113. // QOSMGR was unable to create a socket.
  114. // The data is the error code.
  115. //
  116. #define QOSMLOG_CREATE_SOCKET_FAILED 0x0000A801L
  117. //
  118. // MessageId: QOSMLOG_BIND_IF_FAILED
  119. //
  120. // MessageText:
  121. //
  122. // QOSMGR could not bind to IP address %1.
  123. // Please make sure TCP/IP is installed and configured correctly.
  124. // The data is the error code.
  125. //
  126. #define QOSMLOG_BIND_IF_FAILED 0x0000A802L
  127. //
  128. // MessageId: QOSMLOG_RECVFROM_FAILED
  129. //
  130. // MessageText:
  131. //
  132. // QOSMGR was unable to receive an incoming message
  133. // on the local interface with IP address %1.
  134. // The data is the error code.
  135. //
  136. #define QOSMLOG_RECVFROM_FAILED 0x0000A803L
  137. //
  138. // MessageId: QOSMLOG_SENDTO_FAILED
  139. //
  140. // MessageText:
  141. //
  142. // QOSMGR was unable to send a packet from the interface with IP address %1
  143. // to the IP address %2.
  144. // The data is the error code.
  145. //
  146. #define QOSMLOG_SENDTO_FAILED 0x0000A804L
  147. //
  148. // MessageId: QOSMLOG_SET_MCAST_IF_FAILED
  149. //
  150. // MessageText:
  151. //
  152. // QOSMGR could not request multicasting on the local interface
  153. // with IP address %1.
  154. // The data is the error code.
  155. //
  156. #define QOSMLOG_SET_MCAST_IF_FAILED 0x0000A805L
  157. //
  158. // MessageId: QOSMLOG_JOIN_GROUP_FAILED
  159. //
  160. // MessageText:
  161. //
  162. // QOSMGR could not join the multicast group 224.0.0.9
  163. // on the local interface with IP address %1.
  164. // The data is the error code.
  165. //
  166. #define QOSMLOG_JOIN_GROUP_FAILED 0x0000A806L
  167. //
  168. // MessageId: QOSMLOG_QOSMGR_STARTED
  169. //
  170. // MessageText:
  171. //
  172. // QOSMGR has started successfully.
  173. //
  174. #define QOSMLOG_QOSMGR_STARTED 0x0000A807L
  175. //
  176. // MessageId: QOSMLOG_QOSMGR_ALREADY_STARTED
  177. //
  178. // MessageText:
  179. //
  180. // QOSMGR received a start request when it was already running.
  181. //
  182. #define QOSMLOG_QOSMGR_ALREADY_STARTED 0x0000A808L
  183. //
  184. // MessageId: QOSMLOG_RTM_REGISTER_FAILED
  185. //
  186. // MessageText:
  187. //
  188. // IPRIPv2 was unable to register with the Routing Table Manager.
  189. // The data is the error code.
  190. //
  191. #define QOSMLOG_RTM_REGISTER_FAILED 0x0000A809L
  192. //
  193. // MessageId: QOSMLOG_QOSMGR_STOPPED
  194. //
  195. // MessageText:
  196. //
  197. // QOSMGR has stopped.
  198. //
  199. #define QOSMLOG_QOSMGR_STOPPED 0x0000A80AL
  200. //
  201. // MessageId: QOSMLOG_NETWORK_MODULE_ERROR
  202. //
  203. // MessageText:
  204. //
  205. // QOSMGR encountered a problem in the Network Module.
  206. // The data is the error code.
  207. //
  208. #define QOSMLOG_NETWORK_MODULE_ERROR 0x0000A80BL
  209. //
  210. // MessageId: QOSMLOG_PACKET_TOO_SMALL
  211. //
  212. // MessageText:
  213. //
  214. // QOSMGR received a packet which was smaller than the minimum size
  215. // allowed for QOSMGR packets. The packet has been discarded.
  216. // It was received on the local interface with IP address %1,
  217. // and it came from the neighboring router with IP address %2.
  218. //
  219. #define QOSMLOG_PACKET_TOO_SMALL 0x0000A80CL
  220. //
  221. // MessageId: QOSMLOG_PACKET_HEADER_CORRUPT
  222. //
  223. // MessageText:
  224. //
  225. // QOSMGR received a packet with an invalid header. The packet has been
  226. // discarded. It was received on the local interface with IP address %1,
  227. // and it came from the neighboring router with IP address %2.
  228. //
  229. #define QOSMLOG_PACKET_HEADER_CORRUPT 0x0000A80DL
  230. //
  231. // MessageId: QOSMLOG_PACKET_VERSION_INVALID
  232. //
  233. // MessageText:
  234. //
  235. // QOSMGR received a packet with an invalid version in its header.
  236. // The packet has been discarded. It was received on the local interface
  237. // with IP address %1, and it came from the neighboring router
  238. // with IP address %2.
  239. //
  240. #define QOSMLOG_PACKET_VERSION_INVALID 0x0000A80EL
  241. //
  242. // MessageId: QOSMLOG_TIMER_MODULE_ERROR
  243. //
  244. // MessageText:
  245. //
  246. // QOSMGR encountered a problem in the Timer Module.
  247. // The data is the error code.
  248. //
  249. #define QOSMLOG_TIMER_MODULE_ERROR 0x0000A80FL
  250. //
  251. // MessageId: QOSMLOG_PROTOCOL_MODULE_ERROR
  252. //
  253. // MessageText:
  254. //
  255. // QOSMGR encountered a problem in the Protocol Module.
  256. // The data is the error code.
  257. //
  258. #define QOSMLOG_PROTOCOL_MODULE_ERROR 0x0000A810L
  259. //
  260. // MessageId: QOSMLOG_TC_REGISTER_FAILED
  261. //
  262. // MessageText:
  263. //
  264. // QOSMGR could not register with the traffic control API.
  265. // The data is the error code.
  266. //
  267. #define QOSMLOG_TC_REGISTER_FAILED 0x0000A811L
  268. //
  269. // MessageId: QOSMLOG_TC_DEREGISTER_FAILED
  270. //
  271. // MessageText:
  272. //
  273. // QOSMGR could not deregister with the traffic control API.
  274. // The data is the error code.
  275. //
  276. #define QOSMLOG_TC_DEREGISTER_FAILED 0x0000A812L