Fix h2mux request context

This commit is contained in:
世界 2023-12-31 15:51:48 +08:00
parent f99a0dfe65
commit 6be79e969e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 20 additions and 3 deletions

View file

@ -204,10 +204,21 @@ func (s *h2MuxClientSession) OpenContext(ctx context.Context) (net.Conn, error)
Body: pipeInReader,
URL: &url.URL{Scheme: "https", Host: "localhost"},
}
request = request.WithContext(ctx)
conn := newLateHTTPConn(pipeInWriter)
connCtx, cancel := context.WithCancel(context.Background())
request = request.WithContext(connCtx)
conn := newLateHTTPConn(pipeInWriter, cancel)
requestDone := make(chan struct{})
go func() {
select {
case <-requestDone:
return
case <-ctx.Done():
cancel()
}
}()
go func() {
response, err := s.transport.RoundTrip(request)
close(requestDone)
if err != nil {
conn.setup(nil, err)
} else if response.StatusCode != 200 {