現象:html
在Windows 7系統上,A使用UDP socket,調用sendto函數向一個目標地址B發送數據,可是目標地址B沒有接收數據,若是A此時當即調用recvfrom試圖接收目標地址B發回的數據的話,recvfrom會當即返回-1,WSAGetLastError()返回10045。socket
緣由:tcp
上述現象是Windows socket的一個bug,當UDP Socket在某次發送後收到一個不可到達的ICMP包時,這個錯誤將在下一個接收中返回,因此上面的套接字在下一次的接收中返回了SOCKET_ERROR,錯誤是10045。函數
解決辦法:post
使用WSAIoctl設置UDP socket的工做模式,讓其忽略這個錯誤。具體作法以下:spa
#include <Winsock2.h> #include <Mstcpip.h> #include <stdio.h> #pragma comment(lib, "ws2_32.lib") #define SIO_UDP_CONNRESET _WSAIOW(IOC_VENDOR, 12) BOOL bNewBehavior = FALSE; DWORD dwBytesReturned = 0; WSAIoctl(iSock, SIO_UDP_CONNRESET, &bNewBehavior, sizeof bNewBehavior, NULL, 0, &dwBytesReturned, NULL, NULL);
SIO_UDP_CONNREST選項:Controls whether UDP PORT_UNREACHABLE messages are reported. Set to TRUE to enable reporting. Set to FALSE to disable reporting..net
備註:htm
參考文獻:blog
[1]. http://blog.csdn.net/wpullo/article/details/5905616
[2]. http://msdn.microsoft.com/zh-cn/ms741621
[3]. http://blog.sina.com.cn/s/blog_536e955201009xqp.html
[4]. http://blog.csdn.net/threewall/article/details/5089817接口