Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: TCP 客户端-服务器 SIGPIPE
我想知道这个错误是什么意思?
您正在使用套接字和 Http 协议。
它只是意味着您的 TCP 连接已被另一端关闭或由于其他原因而中断。中断意味着在开始数据传输之前需要再次进行 3 次握手。如评论中所述,在侦听端即服务器上,您通常无法启动连接。所以应该简单地关闭这个套接字并继续前进。
但是,如果您是客户端,您可能应该调用类似的 api 再次连接并在成功后继续。
SO上的管道破裂