亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

socket怎么設置為非阻塞模式

發布時間:2021-07-22 17:30:40 來源:億速云 閱讀:246 作者:Leah 欄目:大數據

今天就跟大家聊聊有關socket怎么設置為非阻塞模式,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1. windows平臺上無論利用socket()函數還是WSASocket()函數創建的socket都是阻塞模式的:

SOCKET WSAAPI socket(  
  _In_ int af,  
  _In_ int type,  
  _In_ int protocol  
);  
  
SOCKET WSASocket(  
  _In_ int                af,  
  _In_ int                type,  
  _In_ int                protocol,  
  _In_ LPWSAPROTOCOL_INFO lpProtocolInfo,  
  _In_ GROUP          g,  
  _In_ DWORD         dwFlags  
);

linux平臺上可以在利用socket()函數創建socket時指定創建的socket是異步的:

int socket(int domain, int type, int protocol);

在type的參數中設置SOCK_NONBLOCK標志即可,例如:

int s = socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, IPPROTO_TCP);

2. 另外,windows和linux平臺上accept()函數返回的socekt也是阻塞的,linux另外提供了一個accept4()函數,可以直接將返回的socket設置為非阻塞模式:

int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen);  
   
int accept4(int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags);

只要將accept4()最后一個參數flags設置成SOCK_NONBLOCK即可。

3. 除了創建socket時,將socket設置成非阻塞模式,還可以通過以下API函數來設置:

linux平臺上可以調用fcntl()或者ioctl()函數,實例如下:

fcntl(sockfd, F_SETFL, fcntl(sockfd, F_GETFL, 0) | O_NONBLOCK);  
   
ioctl(sockfd, FIONBIO, 1);  //1:非阻塞 0:阻塞

參考: http://blog.sina.com.cn/s/blog_9373fc760101i72a.html

但是網上也有文章說(文章鏈接:http://blog.csdn.net/haoyu_linux/article/details/44306993),linux下如果調用fcntl()設置socket為非阻塞模式,不僅要設置O_NONBLOCK模式,還需要在接收和發送數據時,需要使用MSG_DONTWAIT標志,即在recv,recvfrom和send,sendto數據時,將flag設置為MSG_DONTWAIT。是否有要進行這種雙重設定的必要,筆者覺得沒有這個必要。因為linux man手冊上recv()函數的說明中關于MSG_DONTWAIT說明如下:

Enables nonblocking operation; if the operation would block, the call fails with the error EAGAIN or EWOULDBLOCK (this can also be enabled using the O_NONBLOCK flag with the F_SETFL fcntl(2)).

通過這段話我覺得要么通過設置recv()函數的flags標識位為MSG_DONTWAIT,要么通過fcntl()函數設置O_NONBLOCK標識,而不是要同時設定。

windows上可調用ioctlsocket函數:

int ioctlsocket(  
  _In_    SOCKET s,  
  _In_    long   cmd,  
  _Inout_ u_long *argp  
);

將cmd參數設置為FIONBIO,*argp=0即設置成阻塞模式,而*argp非0即可設置成非阻塞模式。但是windows平臺需要注意一個地方,如果你對一個socket調用了WSAAsyncSelect()或WSAEventSelect()函數后,你再調用ioctlsocket()函數將該socket設置為非阻塞模式,則會失敗,你必須先調用WSAAsyncSelect()通過設置lEvent參數為0或調用WSAEventSelect()通過設置lNetworkEvents參數為0來分別禁用WSAAsyncSelect()或WSAEventSelect()。再次調用ioctlsocket()將該socket設置成阻塞模式才會成功。因為調用WSAAsyncSelect()或WSAEventSelect()函數會自動將socket設置成非阻塞模式。msdn上的原話是:

The WSAAsyncSelect and WSAEventSelect functions automatically set a socket to nonblocking mode. If WSAAsyncSelect or WSAEventSelect has been issued on a socket, then any attempt to use ioctlsocket to set the socket back to blocking mode will fail with WSAEINVAL.

To set the socket back to blocking mode, an application must first disable WSAAsyncSelect by calling WSAAsyncSelect with the lEvent parameter equal to zero, or disable WSAEventSelect by calling WSAEventSelect with the lNetworkEvents parameter equal to zero.

網址:https://msdn.microsoft.com/en-us/library/windows/desktop/ms738573(v=vs.85).aspx

4. 在看實際項目中以前一些前輩留下來的代碼中,通過在一個循環里面調用fcntl()或者ioctlsocket()函數來socket的非阻塞模式的,代碼如下:

for (;;)  
{  
#ifdef UNIX  
    on=1;  
    if (ioctlsocket(id, FIONBIO, (char *)&on) < 0)  
#endif  
              
#ifdef WIN32  
    unsigned long on_windows=1;  
    if (ioctlsocket(id, FIONBIO, &on_windows) < 0)  
#endif  
              
              
#ifdef VOS  
    int off=0;  
    if (ioctlsocket(id, FIONBIO, (char *)&off) <0)  
#endif  
    {  
        if (GET_LAST_SOCK_ERROR() == EINTR)  
            continue;  
        RAISE_RUNTIME_ERROR("Can not set FIONBIO for socket");  
        closesocket(id);  
        return NULL;  
    }  
    break;  
}

看完上述內容,你們對socket怎么設置為非阻塞模式有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

无极县| 平泉县| 和静县| 武平县| 康定县| 阿拉尔市| 永年县| 罗田县| 同江市| 新源县| 惠来县| 庄河市| 宣威市| 顺平县| 上林县| 尼玛县| 偏关县| 万年县| 新丰县| 香格里拉县| 西峡县| 炎陵县| 五指山市| 华宁县| 商洛市| 津市市| 库车县| 临湘市| 蕉岭县| 中牟县| 长春市| 游戏| 哈尔滨市| 钦州市| 黎平县| 重庆市| 漳州市| 城步| 湖南省| 平乡县| 德兴市|