doujiu4643 2016-06-22 22:11
浏览 55
已采纳

Golang关闭后保持文件服务套接字打开

I created a file server in golang and call the Close() method on the Listener.

When I try to access the Port on a new Web connection it appears the Socket is closed and I am unable to access the website.

How ever if I referesh the page with a connection that has already been established.... the page reloads fine as if the socket was never closed? I am even able to still browse around the file system.

I noticed after 30 or so minutes the socket seems to force close.

Is there something I am missing to force the socket to drop all existing connections to prevent people from accessing the file server?

var fileListener net.Listener
host_string = "127.0.0.1:8080"
fileListener, _ = net.Listen("tcp", host_string)
server := &http.Server{Addr: host_string, Handler:     
http.FileServer(http.Dir("/"))}
go func() { server.Serve(fileListener) }()
fileListener.Close()
  • 写回答

1条回答 默认 最新

  • dpeqsfx5186 2016-06-23 00:33
    关注

    There's no way to shut down idle HTTP/1.1 or HTTP2 connections. There is a an open issue at https://golang.org/issue/9478, but no immediate plans for it. Note that once you close your listener, your server will not accept new connections; you're reusing the same connection.

    If you want to forcefully close all connections, you would need to do the bookkeeping yourself using the http.Server ConnState to track the TCP connections that are active.

    You could also have your handlers set Connection: close on each response, but that would make your http server much less efficient if clients ever need to make more than 1 request.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作