python socket timeout設定

來源:互聯網
上載者:User

標籤:block   settime   connect   資料   模式   stream   返回   需要   pytho   

需要在調用socket的connect方法之前設定settimeout(time)方法,另外在設定之後要將再次調用settimeout(None)來設定socket進入阻塞模式。

如下程式碼範例:

sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)sock.settimeout(10)sock.connect(address)sock.settimeout(None)fileobj = sock.makefile(‘rb‘, 0)



原來,socket 一旦設定了timeout, 就進入了 non-blocking 工作模式,原來的 send() 和 recv() 等的用法就完全不同了,可能會只發送或者接收了部分資料,需要檢查傳回值並多次重試。甚至,makefile() 是完全不允許使用的,它已經在 socket 模組的文檔中明確聲明,不過如果不是在這裡栽過跟頭很少會注意到這點。

明確了這一點,就可以寫出在 non-blocking 模式工作的正確代碼,會複雜不少,尤其處理一開始不能確定資料長度的文本協議。

阻塞和非阻塞是完全兩種不同的使用方法,並不是添加一個socket.settimeout() 那麼簡單。

python socket timeout設定

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.