golang在已打开的文件描述符上进行接受。

huangapple go评论98阅读模式
英文:

golang accept on already opened fd

问题

我有一个守护进程,它监听一个特定的Unix域套接字文件。在某个时刻,它会生成一个子进程,该子进程应该继续监听同一个套接字文件,而不是打开一个新的并覆盖旧的。我需要一个能够监听特定文件描述符(FD)的方法。在C语言中,可以使用accept()函数来实现:

int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen);

请给予建议。

英文:

I have a daemon that listens on a specific unix domain socket file. At some point it spawns a child which should continue listen on the same socket file without open a new one and overwriting the old one. I need a method that listen on a specific FD. In C it can be done with accept():

int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen);

Please advise.

答案1

得分: 2

net.FileListener 用于将文件描述符转换为 net.Listener

f := os.NewFile(sockfd, "from parent")
l, err := net.FileListener(f)
if err != nil {
    log.Fatal(err)
}
英文:

net.FileListener is used to turn a file descriptor into a net.Listener

f := os.NewFile(sockfd, "from parent")
l, err := net.FileListener(f)
if err != nil {
    log.Fatal(err)
}

huangapple
  • 本文由 发表于 2017年6月28日 22:58:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/44806115.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定