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.

205 lines
5.2 KiB

  1. /*++
  2. Copyright (c) 1999, Microsoft Corporation
  3. Module Name:
  4. qosmlog.h
  5. Abstract:
  6. This file is processed by mapmsg to produce a .mc file,
  7. then the .mc file is compiled by the message compiler,
  8. and the resulting binary is included in QOSMGR's resource file.
  9. Don't change the comments following the manifest constants
  10. without understanding how mapmsg works.
  11. Revision History:
  12. --*/
  13. #define QOSMLOG_BASE 43000
  14. #define QOSMLOG_INIT_CRITSEC_FAILED (QOSMLOG_BASE + 1)
  15. /*
  16. * QOSMGR was unable to initialize a critical section.
  17. * The data is the exception code.
  18. */
  19. #define QOSMLOG_CREATE_SEMAPHORE_FAILED (QOSMLOG_BASE + 2)
  20. /*
  21. * QOSMGR was unable to create a semaphore.
  22. * The data is the error code.
  23. */
  24. #define QOSMLOG_CREATE_EVENT_FAILED (QOSMLOG_BASE + 3)
  25. /*
  26. * QOSMGR was unable to create an event.
  27. * The data is the error code.
  28. */
  29. #define QOSMLOG_CREATE_RWL_FAILED (QOSMLOG_BASE + 4)
  30. /*
  31. * QOSMGR was unable to create a synchronization object.
  32. * The data is the error code.
  33. */
  34. #define QOSMLOG_HEAP_CREATE_FAILED (QOSMLOG_BASE + 5)
  35. /*
  36. * QOSMGR was unable to create a heap.
  37. * The data is the error code.
  38. */
  39. #define QOSMLOG_HEAP_ALLOC_FAILED (QOSMLOG_BASE + 6)
  40. /*
  41. * QOSMGR was unable to allocate memory from its heap.
  42. * The data is the error code.
  43. */
  44. #define QOSMLOG_CREATE_THREAD_FAILED (QOSMLOG_BASE + 7)
  45. /*
  46. * QOSMGR was unable to create a thread.
  47. * The data is the error code.
  48. */
  49. #define QOSMLOG_WSASTARTUP_FAILED (QOSMLOG_BASE + 8)
  50. /*
  51. * QOSMGR was unable to start Windows Sockets.
  52. * The data is the error code.
  53. */
  54. #define QOSMLOG_CREATE_SOCKET_FAILED (QOSMLOG_BASE + 9)
  55. /*
  56. * QOSMGR was unable to create a socket.
  57. * The data is the error code.
  58. */
  59. #define QOSMLOG_BIND_IF_FAILED (QOSMLOG_BASE + 10)
  60. /*
  61. * QOSMGR could not bind to IP address %1.
  62. * Please make sure TCP/IP is installed and configured correctly.
  63. * The data is the error code.
  64. */
  65. #define QOSMLOG_RECVFROM_FAILED (QOSMLOG_BASE + 11)
  66. /*
  67. * QOSMGR was unable to receive an incoming message
  68. * on the local interface with IP address %1.
  69. * The data is the error code.
  70. */
  71. #define QOSMLOG_SENDTO_FAILED (QOSMLOG_BASE + 12)
  72. /*
  73. * QOSMGR was unable to send a packet from the interface with IP address %1
  74. * to the IP address %2.
  75. * The data is the error code.
  76. */
  77. #define QOSMLOG_SET_MCAST_IF_FAILED (QOSMLOG_BASE + 13)
  78. /*
  79. * QOSMGR could not request multicasting on the local interface
  80. * with IP address %1.
  81. * The data is the error code.
  82. */
  83. #define QOSMLOG_JOIN_GROUP_FAILED (QOSMLOG_BASE + 14)
  84. /*
  85. * QOSMGR could not join the multicast group 224.0.0.9
  86. * on the local interface with IP address %1.
  87. * The data is the error code.
  88. */
  89. #define QOSMLOG_QOSMGR_STARTED (QOSMLOG_BASE + 15)
  90. /*
  91. * QOSMGR has started successfully.
  92. */
  93. #define QOSMLOG_QOSMGR_ALREADY_STARTED (QOSMLOG_BASE + 16)
  94. /*
  95. * QOSMGR received a start request when it was already running.
  96. */
  97. #define QOSMLOG_RTM_REGISTER_FAILED (QOSMLOG_BASE + 17)
  98. /*
  99. * IPRIPv2 was unable to register with the Routing Table Manager.
  100. * The data is the error code.
  101. */
  102. #define QOSMLOG_QOSMGR_STOPPED (QOSMLOG_BASE + 18)
  103. /*
  104. * QOSMGR has stopped.
  105. */
  106. #define QOSMLOG_NETWORK_MODULE_ERROR (QOSMLOG_BASE + 19)
  107. /*
  108. * QOSMGR encountered a problem in the Network Module.
  109. * The data is the error code.
  110. */
  111. #define QOSMLOG_PACKET_TOO_SMALL (QOSMLOG_BASE + 20)
  112. /*
  113. * QOSMGR received a packet which was smaller than the minimum size
  114. * allowed for QOSMGR packets. The packet has been discarded.
  115. * It was received on the local interface with IP address %1,
  116. * and it came from the neighboring router with IP address %2.
  117. */
  118. #define QOSMLOG_PACKET_HEADER_CORRUPT (QOSMLOG_BASE + 21)
  119. /*
  120. * QOSMGR received a packet with an invalid header. The packet has been
  121. * discarded. It was received on the local interface with IP address %1,
  122. * and it came from the neighboring router with IP address %2.
  123. */
  124. #define QOSMLOG_PACKET_VERSION_INVALID (QOSMLOG_BASE + 22)
  125. /*
  126. * QOSMGR received a packet with an invalid version in its header.
  127. * The packet has been discarded. It was received on the local interface
  128. * with IP address %1, and it came from the neighboring router
  129. * with IP address %2.
  130. */
  131. #define QOSMLOG_TIMER_MODULE_ERROR (QOSMLOG_BASE + 23)
  132. /*
  133. * QOSMGR encountered a problem in the Timer Module.
  134. * The data is the error code.
  135. */
  136. #define QOSMLOG_PROTOCOL_MODULE_ERROR (QOSMLOG_BASE + 24)
  137. /*
  138. * QOSMGR encountered a problem in the Protocol Module.
  139. * The data is the error code.
  140. */
  141. #define QOSMLOG_TC_REGISTER_FAILED (QOSMLOG_BASE + 25)
  142. /*
  143. * QOSMGR could not register with the traffic control API.
  144. * The data is the error code.
  145. */
  146. #define QOSMLOG_TC_DEREGISTER_FAILED (QOSMLOG_BASE + 26)
  147. /*
  148. * QOSMGR could not deregister with the traffic control API.
  149. * The data is the error code.
  150. */