Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to set timeout on python's socket recv method. How to do it?

share|improve this question

2 Answers

The typical approach is to use select() to wait until data is available or until the timeout occurs. Only call recv() when data is actually available. To be safe, we also set the socket to non-blocking mode to gaurantee that recv() will never block indefinitely. select() can also be used to wait on more than one socket at a time.

import select

mysocket.setblocking(0)

ready = select.select([mysocket], [], [], timeout_in_seconds)
if ready[0]:
    data = mysocket.recv(4096)

If you have a lot of open file descriptors, poll() is a more efficient alternative to select().

Another option is to set a timeout for all operations on the socket using socket.settimeout(), but I see that you've explicitly rejected that solution in another answer.

share|improve this answer
3  
use select is good, but the part where you say "you can't" is misleading, since there is socket.settimeout(). – nosklo Apr 28 '10 at 16:41
@nosklo I've updated my answer. – Daniel Stutzbach Apr 28 '10 at 16:51
It's better now, but I don't see where the answer was "explicitly rejected". – nosklo Apr 28 '10 at 18:31
One caution on using select -- if you're running on a Windows machine, select relies on the WinSock library, which has a habit of returning as soon as some data has arrived, but not necessarily all of it. So you need to incorporate a loop to keep calling select.select() until all the data is received. How you know you've gotten all the data is (unfortunately) up to you to figure out -- it may mean looking for a terminator string, a certain number of bytes, or just waiting for a defined timeout. – JDM Jan 24 at 19:07

there's socket.settimeout()

share|improve this answer
3  
It doesn't timeout the recv (at least when I tried it). Only the accept() is timed out. – Oren S Jun 1 '11 at 11:40
The socket.recv() seems to time out for me just fine after setting socket.settimeout(), exactly as intended. Am I making this up? Can anyone else confirm this? – Aeonaut Oct 23 '11 at 3:20
   
@Aeonaut I think that this times out recv() most of the time, but there is a race condition. In socket.recv() Python (2.6) calls select/poll internally with the timeout and then recv() is called right after. So if you use a blocking socket and between these 2 calls the other end point crashes, you can end up hanging indefinitely on the recv(). If you use non-blocking socket, python doesn't call select.select internally, so I think Daniel Stutzbach's answer is the correct way. – slack3r Aug 4 '12 at 8:51
1  
Actually, I probably misunderstood when select() returns, so please scratch the previous comment. Beej's Guide says the above is a valid way to implement a timeout on recv: beej.us/guide/bgnet/output/html/singlepage/… so I'll trust is an authorative source. – slack3r Aug 4 '12 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.