当前位置:Gxlcms > mysql > 自制Ping(3)IcmpSendEcho2ExDemo

自制Ping(3)IcmpSendEcho2ExDemo

时间:2021-07-01 10:21:17 帮助过:71人阅读

IP Helper 可能需要WDK支持, 我本机装了WDK, 没试过不用会怎样. 由于IcmpSendEcho2Ex()回调的形式乎与我的WDK有所冲突, 所以这里只演示阻塞模式. Event应该不受影响. Demo下载地址: http://download.csdn.net/detail/ren0065/8388105 主要代码: void CPingTe

IP Helper 可能需要WDK支持, 我本机装了WDK, 没试过不用会怎样.

由于IcmpSendEcho2Ex()回调的形式似乎与我的WDK有所冲突, 所以这里只演示阻塞模式. Event应该不受影响.

Demo下载地址: http://download.csdn.net/detail/ren0065/8388105

主要代码:

  1. void CPingTest1Dlg::OnBnClickedBtnPing()
  2. {
  3. // TODO: 在此添加控件通知处理程序代码
  4. UpdateData(TRUE);
  5. HANDLE h_icmp = IcmpCreateFile();
  6. IPAddr ip_source = inet_addr(cs_source_ip_);
  7. IPAddr ip_destination = inet_addr(cs_destination_ip_);
  8. WORD w_request_data_size = atoi(cs_request_size_);
  9. LPVOID p_request_data = calloc(1, w_request_data_size);
  10. PIP_OPTION_INFORMATION p_option_info = NULL;
  11. LPVOID p_reply_data = calloc(1, sizeof(ICMP_ECHO_REPLY) + 8 + w_request_data_size);
  12. DWORD dw_reply_data_size = sizeof(ICMP_ECHO_REPLY) + 8 + w_request_data_size;
  13. DWORD dw_timeout = atoi(cs_timeout_);
  14. DWORD dw_result = IcmpSendEcho2Ex(
  15. h_icmp
  16. , NULL
  17. , NULL
  18. , NULL
  19. , ip_source
  20. , ip_destination
  21. , p_request_data
  22. , w_request_data_size
  23. , p_option_info
  24. , p_reply_data
  25. , dw_reply_data_size
  26. , dw_timeout);
  27. free(p_request_data);
  28. cs_output_.Empty();
  29. if (dw_result == 0)
  30. {
  31. DWORD dw_error = GetLastError();
  32. CString cs_error_msg;
  33. switch (dw_error)
  34. {
  35. case ERROR_INVALID_PARAMETER:
  36. cs_error_msg = "无效参数. 当IcmpHandle是一个无效handle或ReplySize的值小于ICMP_ECHO_REPLY或ICMP_ECHO_REPLY32时会返回该错误.";
  37. break;
  38. case ERROR_IO_PENDING:
  39. cs_error_msg = "异步处理正在进行中.调用IcmpSendEcho2Ex异步模式成功时会返回该值, 不是错误.";
  40. break;
  41. case ERROR_NOT_ENOUGH_MEMORY:
  42. cs_error_msg = "内存不足";
  43. break;
  44. case ERROR_NOT_SUPPORTED:
  45. cs_error_msg = "不支持该请求.如果本地计算机没有IPv4协议栈将返回该错误.";
  46. break;
  47. case IP_BUF_TOO_SMALL:
  48. cs_error_msg = "ReplySize指定的太小.";
  49. break;
  50. default:
  51. {
  52. HLOCAL hLocal = NULL;
  53. DWORD dwErr = GetLastError();
  54. DWORD systemLocale = MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL);
  55. DWORD fOK = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS | FORMAT_MESSAGE_ALLOCATE_BUFFER,
  56. NULL, dwErr, systemLocale, (LPTSTR)&hLocal, 0, NULL);
  57. cs_error_msg = (LPCTSTR)LocalLock(hLocal);
  58. break;
  59. }
  60. }
  61. cs_output_ = cs_error_msg;
  62. }
  63. else
  64. {
  65. CString cs_buffer;
  66. PICMP_ECHO_REPLY pEchoReply = (PICMP_ECHO_REPLY)p_reply_data;
  67. struct in_addr ReplyAddr;
  68. ReplyAddr.S_un.S_addr = pEchoReply->Address;
  69. cs_buffer.Format("Sent icmp message from %s to %s\r\n", cs_source_ip_, cs_destination_ip_);
  70. cs_output_ += cs_buffer;
  71. if (dw_result > 1)
  72. {
  73. cs_buffer.Format("Received %ld icmp message responses\r\n", dw_result);
  74. cs_output_ += cs_buffer;
  75. cs_buffer.Format("Information from the first response:\r\n");
  76. cs_output_ += cs_buffer;
  77. }
  78. else
  79. {
  80. cs_buffer.Format("Received %ld icmp message response\r\n", dw_result);
  81. cs_output_ += cs_buffer;
  82. cs_buffer.Format("Information from this response:\r\n");
  83. cs_output_ += cs_buffer;
  84. }
  85. cs_buffer.Format("Received from %s\r\n", inet_ntoa(ReplyAddr));
  86. cs_output_ += cs_buffer;
  87. cs_buffer.Format("Status = %ld ", pEchoReply->Status);
  88. cs_output_ += cs_buffer;
  89. if (pEchoReply->Status != IP_SUCCESS)
  90. {
  91. DWORD dw_status_err_msg_size = 1024;
  92. PWSTR cw_str_error = (PWSTR)calloc(1, dw_status_err_msg_size);
  93. GetIpErrorString(pEchoReply->Status, cw_str_error, &dw_status_err_msg_size);
  94. cs_output_ = WS2S(cw_str_error).c_str();
  95. free(cw_str_error);
  96. }
  97. else
  98. {
  99. cs_buffer.Format("(Successful)\r\n");
  100. cs_output_ += cs_buffer;
  101. cs_buffer.Format("RTT: %d\r\n", pEchoReply->RoundTripTime);
  102. cs_output_ += cs_buffer;
  103. cs_buffer.Format("SIZE: %d\r\n", pEchoReply->DataSize);
  104. cs_output_ += cs_buffer;
  105. cs_buffer.Format("TTL: %d\r\n", pEchoReply->Options.Ttl);
  106. cs_output_ += cs_buffer;
  107. }
  108. }
  109. UpdateData(FALSE);
  110. free(p_reply_data);
  111. IcmpCloseHandle(h_icmp);
  112. }

人气教程排行