I need to set timeout on python's socket recv method. How to do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The typical approach is to use select() to wait until data is available or until the timeout occurs. Only call
If you have a lot of open file descriptors, poll() is a more efficient alternative to Another option is to set a timeout for all operations on the socket using |
|||||||||||
|
|
there's |
|||||||||||||||
|