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.

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

报告相同问题?

悬赏问题

  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序
  • ¥50 html2canvas超出滚动条不显示
  • ¥15 java业务性能问题求解(sql,业务设计相关)
  • ¥15 52810 尾椎c三个a 写蓝牙地址
  • ¥15 elmos524.33 eeprom的读写问题
  • ¥15 用ADS设计一款的射频功率放大器
  • ¥15 怎么求交点连线的理论解?