Skip to content Skip to sidebar Skip to footer

How To Use Python Socket.settimeout() Properly

As far as I know, when you call socket.settimeout(value) and you set a float value greater than 0.0, that socket will raise a scocket.timeout when a call to, for example, socket.re

Solution 1:

The timeout applies independently to each call to socket read/write operation. So next call it will be 20 seconds again.

A) To have a timeout shared by several consequential calls, you'll have to track it manually. Something along these lines:

deadline = time.time() + 20.0whilenot data_received:
    iftime.time() >= deadline:
        raise Exception() # ...
    socket.settimeout(deadline - time.time())
    socket.read() # ...

B) Any code that's using a socket with a timeout and isn't ready to handle socket.timeout exception will likely fail. It is more reliable to remember the socket's timeout value before you start your operation, and restore it when you are done:

defmy_socket_function(socket, ...):
    # some initialization and stuff
    old_timeout = socket.gettimeout() # Save# do your stuff with socket
    socket.settimeout(old_timeout) # Restore# etc

This way, your function will not affect the functioning of the code that's calling it, no matter what either of them do with the socket's timeout.

Solution 2:

The timeout applies to each call to recv().

A) simply use your existing timeout and call recv(to_receive) - I.e. Try to receive all the data in one recv call - in fact I don't see why you shouldn't use this as the default way it works

B) No nothing bad could happen, but any other code which uses that socket needs to be aware of handling timeout.

On your existing code, shouldn't the recv() call be recv(max(4096,to_receive-received)) - that way you won't unintentionally consume any data which follows after the to_receive bytes.

Solution 3:

See my server script, you will get the idea to use it properly.

import socket
import sys
fragments = []
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(("192.168.1.4",9001))
s.listen(5)
while True:
    c,a = s.accept()
    c.settimeout(10.0)
    print"Someone came in Server from %s and port %s" %(a[0],a[1])
    c.send("Welcome to system")
    while True:
        chunk = c.recv(2048)
        ifnot chunk.strip():
            breakelse:
            fragments.append(chunk)
            continue
    combiner = "".join(fragments)
    print combiner
    shutdown = str(raw_input("Wanna Quit(Y/y) or (N/n): "))
    ifshutdown == 'Y'orshutdown == 'y':
        c.close()
        sys.exit()
    else:
        continue

This script is just to give you an idea about the socket.settimeout().

Post a Comment for "How To Use Python Socket.settimeout() Properly"