我正在尝试使用visual studio测量RTT。 现在,当我调用函数时:
GetTcpRow(554, clientPort, MIB_TCP_STATE_ESTAB,(PMIB_TCPROW) serverConnectRow);
if (winStatus != ERROR_SUCCESS) {
wprintf
(L"\nGetTcpRow failed on the server established connection with %d",
winStatus);
goto bail;
它将值1168返回给变量winStatus
然后打印消息nGetTcpRow failed on the server established connection with 1168
并停止运行。
有谁知道问题是什么?函数GetTcpRow
做了什么?
感谢。
答案 0 :(得分:0)
Google在这里找到了GetTcpRow()的代码
http://msdn.microsoft.com/en-us/library/windows/desktop/bb485735(v=vs.85).aspx
代码中有多个错误支路。你需要查找的值 各种返回代码,以查看正在发生的错误分支。