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.

75 lines
1.9 KiB

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. ftplog.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. #ifndef _NATHLP_FTPLOG_H_
  13. #define _NATHLP_FTPLOG_H_
  14. #define IP_FTP_LOG_BASE 35000
  15. #define IP_FTP_LOG_NAT_INTERFACE_IGNORED (IP_FTP_LOG_BASE+1)
  16. /*
  17. * The FTP transparent proxy detected network address translation (NAT)
  18. * enabled on the interface with index '%1'.
  19. * The agent has disabled itself on the interface in order to avoid
  20. * confusing clients.
  21. */
  22. #define IP_FTP_LOG_ACTIVATE_FAILED (IP_FTP_LOG_BASE+2)
  23. /*
  24. * The FTP transparent proxy was unable to bind to the IP address %1.
  25. * This error may indicate a problem with TCP/IP networking.
  26. * The data is the error code.
  27. */
  28. #define IP_FTP_LOG_RECEIVE_FAILED (IP_FTP_LOG_BASE+3)
  29. /*
  30. * The FTP transparent proxy encountered a network error while
  31. * attempting to receive messages on the interface with IP address %1.
  32. * The data is the error code.
  33. */
  34. #define IP_FTP_LOG_ALLOCATION_FAILED (IP_FTP_LOG_BASE+4)
  35. /*
  36. * The FTP transparent proxy was unable to allocate %1 bytes of memory.
  37. * This may indicate that the system is low on virtual memory,
  38. * or that the memory-manager has encountered an internal error.
  39. */
  40. #define IP_FTP_LOG_ACCEPT_FAILED (IP_FTP_LOG_BASE+5)
  41. /*
  42. * The FTP transparent proxy encountered a network error while
  43. * attempting to accept connections on the interface with IP address %1.
  44. * The data is the error code.
  45. */
  46. #define IP_FTP_LOG_SEND_FAILED (IP_FTP_LOG_BASE+7)
  47. /*
  48. * The FTP transparent proxy encountered a network error while
  49. * attempting to send messages on the interface with IP address %1.
  50. * The data is the error code.
  51. */
  52. #define IP_FTP_LOG_END (IP_FTP_LOG_BASE+999)
  53. /*
  54. * end.
  55. */
  56. #endif // _NATHLP_FTPLOG_H_