Hi, all!
I was wondering if there is any way to check from the server side whether the client has closed a socket connected to one on my side.
client side
import socket
s = socket.create_connection ((host, random_port))
s.close ()
server side
...
a = lstn.accept ()
How can I check from the server side whether s is closed or not ?:-/
Sincerely, n.utiu!