From 9836fc9b052ebf9616a23f62244d3a4d49829a13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Thu, 27 Apr 2023 22:15:49 +0800 Subject: [PATCH] Fix concurrent close on h2 server conn --- h2mux.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/h2mux.go b/h2mux.go index c4fc986..90316ea 100644 --- a/h2mux.go +++ b/h2mux.go @@ -8,6 +8,7 @@ import ( "net/http" "net/url" "os" + "sync" "time" "github.com/sagernet/sing/common/atomic" @@ -106,6 +107,7 @@ type h2MuxConnWrapper struct { N.ExtendedConn flusher http.Flusher done chan struct{} + access sync.Mutex } func newHTTP2Wrapper(conn net.Conn, flusher http.Flusher) *h2MuxConnWrapper { @@ -143,6 +145,8 @@ func (w *h2MuxConnWrapper) WriteBuffer(buffer *buf.Buffer) error { } func (w *h2MuxConnWrapper) Close() error { + w.access.Lock() + defer w.access.Unlock() select { case <-w.done: default: