0
catch (SocketException se)
{
if(se.ErrorCode == 10054 || se.ErrorCode == 10053) // Error code for Connection reset by peer
{
Console.WriteLine("User from " + currentSocket.RemoteEndPoint.ToString() + " timed out");
}
}
我有一個單聲道套接字異常的問題,上面的代碼在windows上完美運行,而單聲道引發異常時RemoteEndPoint爲空。 我的問題是如何獲取斷開用戶使用單聲道的IP地址?當套接字超時時,單聲道獲得遠程IP地址
什麼是'currentSocket'? – thumbmunkeys