优化连接关闭速度

This commit is contained in:
GoEdgeLab
2021-10-25 19:00:42 +08:00
parent 22ca557691
commit d8943f3816
5 changed files with 51 additions and 22 deletions

View File

@@ -59,7 +59,7 @@ func (this *Listener) listenTCP() error {
if err != nil {
return err
}
netListener = NewClientListener(netListener)
netListener = NewClientListener(netListener, protocol.IsHTTPFamily() || protocol.IsHTTPSFamily())
events.On(events.EventQuit, func() {
remotelogs.Println("LISTENER", "quit "+this.group.FullAddr())
_ = netListener.Close()