mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-04 20:37:44 +03:00
Fix missing handshake timeout
This commit is contained in:
parent
13614c0290
commit
d7f19df3ce
3 changed files with 16 additions and 8 deletions
|
@ -1,6 +1,7 @@
|
|||
package mux
|
||||
|
||||
import (
|
||||
"context"
|
||||
"io"
|
||||
"net"
|
||||
"reflect"
|
||||
|
@ -12,7 +13,7 @@ import (
|
|||
)
|
||||
|
||||
type abstractSession interface {
|
||||
Open() (net.Conn, error)
|
||||
OpenContext(ctx context.Context) (net.Conn, error)
|
||||
Accept() (net.Conn, error)
|
||||
NumStreams() int
|
||||
Close() error
|
||||
|
@ -80,7 +81,7 @@ type smuxSession struct {
|
|||
*smux.Session
|
||||
}
|
||||
|
||||
func (s *smuxSession) Open() (net.Conn, error) {
|
||||
func (s *smuxSession) OpenContext(context.Context) (net.Conn, error) {
|
||||
return s.OpenStream()
|
||||
}
|
||||
|
||||
|
@ -96,6 +97,10 @@ type yamuxSession struct {
|
|||
*yamux.Session
|
||||
}
|
||||
|
||||
func (y *yamuxSession) OpenContext(context.Context) (net.Conn, error) {
|
||||
return y.OpenStream()
|
||||
}
|
||||
|
||||
func (y *yamuxSession) CanTakeNewRequest() bool {
|
||||
return true
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue