mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-04 12:27:40 +03:00
Fix h2mux open
This commit is contained in:
parent
802d9510a7
commit
9bfb33698b
3 changed files with 7 additions and 12 deletions
6
h2mux.go
6
h2mux.go
|
@ -64,7 +64,7 @@ func (s *h2MuxServerSession) ServeHTTP(writer http.ResponseWriter, request *http
|
|||
}
|
||||
}
|
||||
|
||||
func (s *h2MuxServerSession) OpenContext(ctx context.Context) (net.Conn, error) {
|
||||
func (s *h2MuxServerSession) Open() (net.Conn, error) {
|
||||
return nil, os.ErrInvalid
|
||||
}
|
||||
|
||||
|
@ -197,7 +197,7 @@ func (s *h2MuxClientSession) MarkDead(conn *http2.ClientConn) {
|
|||
s.Close()
|
||||
}
|
||||
|
||||
func (s *h2MuxClientSession) OpenContext(ctx context.Context) (net.Conn, error) {
|
||||
func (s *h2MuxClientSession) Open() (net.Conn, error) {
|
||||
pipeInReader, pipeInWriter := io.Pipe()
|
||||
request := &http.Request{
|
||||
Method: http.MethodConnect,
|
||||
|
@ -212,7 +212,7 @@ func (s *h2MuxClientSession) OpenContext(ctx context.Context) (net.Conn, error)
|
|||
select {
|
||||
case <-requestDone:
|
||||
return
|
||||
case <-ctx.Done():
|
||||
case <-time.After(TCPTimeout):
|
||||
cancel()
|
||||
}
|
||||
}()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue