1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-22 02:39:55 -04:00

close http2 server immediately. fixes #1051

This commit is contained in:
Darien Raymond
2018-04-14 23:07:47 +02:00
parent e5122a4c2d
commit 9d8922f523

View File

@@ -26,7 +26,7 @@ func (l *Listener) Addr() net.Addr {
}
func (l *Listener) Close() error {
return l.server.Shutdown(context.Background())
return l.server.Close()
}
type flushWriter struct {