套接字冻结应用程序上的Python b''

时间:2018-06-24 14:18:47

标签: python sockets

从标题开始,在我的客户端服务器应用程序中,每次客户端服务器之间的套接字收到序列b”时,服务器socket.recv上的调用都会停止响应,该程序不会返回任何错误,因此您无法理解问题出在哪里。 这是冻结应用程序的代码片段:

client_sock.send(str.encode(cmd))
# when receive b' ' application don't pass throught
client_response = client_sock.recv(2048).decode("utf-8", "ignore")
print(client_response)

0 个答案:

没有答案