2

我正在尝试用 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

谢谢。

4

1 回答 1

0

谷歌在这里找到了 GetTcpRow() 的代码

http://msdn.microsoft.com/en-us/library/windows/desktop/bb485735(v=vs.85).aspx

代码中有多个错误分支。您需要查找各种返回代码的值以查看发生了哪个错误分支。

于 2013-01-19T17:58:10.653 回答