Source code of Windows XP (NT5)
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.

91 lines
2.8 KiB

  1. /*++
  2. Copyright (c) 1998, Microsoft Corporation
  3. Module Name:
  4. natlog.h
  5. Abstract:
  6. This module contains text messages used to generate event-log entries
  7. by the component.
  8. Author:
  9. Abolade Gbadegesin (aboladeg) 25-Mar-1998
  10. Revision History:
  11. --*/
  12. #define IP_NAT_LOG_BASE 32000
  13. #define IP_NAT_LOG_UPDATE_ARP_FAILED (IP_NAT_LOG_BASE+1)
  14. /*
  15. * The Network Address Translator (NAT) was unable to update the
  16. * local address-resolution table to respond to requests for
  17. * IP address %1 and mask %2.
  18. * Address-resolution may fail to operate for addresses in the given range.
  19. * This error may indicate a problem with TCP/IP networking,
  20. * or it may indicate lack of support for address-resolution
  21. * in the underlying network interface.
  22. * The data is the error code.
  23. */
  24. #define IP_NAT_LOG_ALLOCATION_FAILED (IP_NAT_LOG_BASE+2)
  25. /*
  26. * The Network Address Translator (NAT) was unable to allocate %1 bytes.
  27. * This may indicate that the system is low on virtual memory,
  28. * or that the memory-manager has encountered an internal error.
  29. */
  30. #define IP_NAT_LOG_IOCTL_FAILED (IP_NAT_LOG_BASE+3)
  31. /*
  32. * The Network Address Translator (NAT) was unable to request an operation
  33. * of the kernel-mode translation module.
  34. * This may indicate misconfiguration, insufficient resources, or
  35. * an internal error.
  36. * The data is the error code.
  37. */
  38. #define IP_NAT_LOG_LOAD_DRIVER_FAILED (IP_NAT_LOG_BASE+4)
  39. /*
  40. * The Network Address Translator (NAT) was unable to load
  41. * the kernel-mode translation module.
  42. * The data is the error code.
  43. */
  44. #define IP_NAT_LOG_UNLOAD_DRIVER_FAILED (IP_NAT_LOG_BASE+5)
  45. /*
  46. * The Network Address Translator (NAT) was unable to unload
  47. * the kernel-mode translation module.
  48. * The data is the error code.
  49. */
  50. #define IP_NAT_LOG_SHARED_ACCESS_CONFLICT (IP_NAT_LOG_BASE+6)
  51. /*
  52. * The Internet Connection Sharing service could not start because
  53. * another process has taken control of the kernel-mode translation module.
  54. * This may occur when the Connection Sharing component has been installed
  55. * in the Routing and Remote Access Manager.
  56. * If this is the case, please remove the Connection Sharing component
  57. * and restart the Internet Connection Sharing service.
  58. */
  59. #define IP_NAT_LOG_ROUTING_PROTOCOL_CONFLICT (IP_NAT_LOG_BASE+7)
  60. /*
  61. * The Connection Sharing component could not start because another process
  62. * has taken control of the kernel-mode translation module.
  63. * This may occur when Internet Connection Sharing has been enabled
  64. * for a connection.
  65. * If this is the case, please disable Internet Connection Sharing
  66. * for the connection in the Network Connections folder and then
  67. * restart Routing and Remote Access.
  68. */
  69. #define IP_NAT_LOG_END (IP_NAT_LOG_BASE+999)
  70. /*
  71. * end.
  72. */