Fix write to h2 conn after closed

This commit is contained in:
世界 2023-01-04 15:19:39 +08:00
parent 54f9625bdc
commit 044f9c5d4f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 50 additions and 3 deletions

View file

@ -120,11 +120,12 @@ func (s *Server) ServeHTTP(writer http.ResponseWriter, request *http.Request) {
}
s.handler.NewConnection(request.Context(), conn, metadata)
} else {
conn := &ServerHTTPConn{
conn := NewHTTP2Wrapper(&ServerHTTPConn{
newHTTPConn(request.Body, writer),
writer.(http.Flusher),
}
})
s.handler.NewConnection(request.Context(), conn, metadata)
conn.CloseWrapper()
}
}