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.

73 lines
1.9 KiB

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. alglog.h
  5. Abstract:
  6. This module contains text messages used to generate event-log entries
  7. by the component.
  8. Author:
  9. Qiang Wang (qiangw) 10-Apr-2000
  10. Revision History:
  11. --*/
  12. #pragma once
  13. #define IP_ALG_LOG_BASE 35000
  14. #define IP_ALG_LOG_NAT_INTERFACE_IGNORED (IP_ALG_LOG_BASE+1)
  15. /*
  16. * The ALG transparent proxy detected network address translation (NAT)
  17. * enabled on the interface with index '%1'.
  18. * The agent has disabled itself on the interface in order to avoid
  19. * confusing clients.
  20. */
  21. #define IP_ALG_LOG_ACTIVATE_FAILED (IP_ALG_LOG_BASE+2)
  22. /*
  23. * The ALG transparent proxy was unable to bind to the IP address %1.
  24. * This error may indicate a problem with TCP/IP networking.
  25. * The data is the error code.
  26. */
  27. #define IP_ALG_LOG_RECEIVE_FAILED (IP_ALG_LOG_BASE+3)
  28. /*
  29. * The ALG transparent proxy encountered a network error while
  30. * attempting to receive messages on the interface with IP address %1.
  31. * The data is the error code.
  32. */
  33. #define IP_ALG_LOG_ALLOCATION_FAILED (IP_ALG_LOG_BASE+4)
  34. /*
  35. * The ALG transparent proxy was unable to allocate %1 bytes of memory.
  36. * This may indicate that the system is low on virtual memory,
  37. * or that the memory-manager has encountered an internal error.
  38. */
  39. #define IP_ALG_LOG_ACCEPT_FAILED (IP_ALG_LOG_BASE+5)
  40. /*
  41. * The ALG transparent proxy encountered a network error while
  42. * attempting to accept connections on the interface with IP address %1.
  43. * The data is the error code.
  44. */
  45. #define IP_ALG_LOG_SEND_FAILED (IP_ALG_LOG_BASE+7)
  46. /*
  47. * The ALG transparent proxy encountered a network error while
  48. * attempting to send messages on the interface with IP address %1.
  49. * The data is the error code.
  50. */
  51. #define IP_ALG_LOG_END (IP_ALG_LOG_BASE+999)
  52. /*
  53. * end.
  54. */