英文:
io.Copy: How to know if a socket is closed or disconnected
问题
我有一个简单的程序,将一个程序的标准输入(stdin)、标准输出(stdout)和标准错误(stderr)连接到一个套接字(socket)上,像这样:
go func() {
defer conn.Close();
defer stdin.Close();
io.Copy(stdin, conn);
}();
go func() {
defer conn.Close();
defer stdout.Close();
defer stderr.Close();
io.Copy(conn, stdout);
io.Copy(conn, stderr);
}();
select{}
我有两个问题:
- 我必须通过
select{}
来保持这两个 goroutine 运行。 - 当套接字断开连接时,没有办法告诉它。如果发生这种情况,我需要终止
select{}
循环。
有什么想法吗?
英文:
I have a simple program that connects a program's stdin, stdout and stderr to a socket, like this,
go func() {
defer conn.Close();
defer stdin.Close();
io.Copy(stdin, conn);
}();
go func() {
defer conn.Close();
defer stdout.Close();
defer stderr.Close();
io.Copy(conn, stdout);
io.Copy(conn, stderr);
}();
select{}
I have two problems,
- I have to keep these two goroutines running by doing a
select{}
- When the socket get disconnected, there's no way to tell it. I need to terminate the
select{}
loop if that happens.
Any ideas?
答案1
得分: 1
如果连接关闭,io.Copy()
将返回(0, io.EOF)
,因此您可以进行检查。
英文:
If connection is closed, io.Copy()
will return (0, io.EOF)
, so you can check it.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论