I\'m trying to make a server / client connection with sockets. But they will not close properly and I can\'t wrap my head around why.
I\'ve corre
you are calling s.close, instead of s.close().
s.close
s.close()
you need to invoke the socket.close() method if you want the client to terminate the connection.`