WinError 10057 – Python TCP Server is not receiving client connections from localhost

Advertisements I have this python server code here, which is waiting to receive a message digest and an encrypted message from a python client. Clientside socket: with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s=socket.socket() s.connect((HOST, PORT)) s.sendall(transmit) Server Side: with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.bind((HOST, PORT)) s.listen() conn, addr = s.accept() print("\n Server is listing on port… Read More WinError 10057 – Python TCP Server is not receiving client connections from localhost