How to empty a socket in python?
- by luc
I need to empty the data on a socket (making sure that there is nothing to receive).
Unfortunately, there is no function for this in the python socket module.
I've implemented something this way:
def empty_socket(sock):
"""remove the data present on the socket"""
input = [sock]
while 1:
inputready, o, e =…