我正在用C编写一个使用winsock的程序,我使用命令fcntl使接收调用非阻塞,我收到以下错误。
warning C4013: 'fcntl' undefined; assuming extern returning int
error C2065: 'F_SETFL' : undeclared identifier
error C2065: 'F_GETFL' : undeclared identifier
error C2065: 'F_SETFL' : undeclared identifier
error C2065: 'O_NDELAY' : undeclared identifier
error C2065: 'EWOULDBLOCK' : undeclared identifierenter code here
我在我的代码中包含了winsock2.h头文件,如下所示
#pragma comment(lib,"ws2_32.lib")
#include <winsock2.h>
请帮帮我。 提前谢谢。
答案 0 :(得分:7)
我认为在Windows上您需要使用ioctlsocket而不是fcntl()
。
进行非阻塞:
unsigned long on = 1;
if (0 != ioctlsocket(socket_fd, FIONBIO, &on))
{
/* Handle failure. */
}
要阻止:
unsigned long off = 0;
if (0 != ioctlsocket(socket_fd, FIONBIO, &off))
{
/* Handle failure. */
}
而不是EWOULDBLOCK
使用WSAEWOULDBLOCK
。