mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-04 20:37:44 +03:00
Fix h2mux request context
This commit is contained in:
parent
f99a0dfe65
commit
6be79e969e
2 changed files with 20 additions and 3 deletions
15
h2mux.go
15
h2mux.go
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue