mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-04 05:33:35 +03:00
parent
8d783c65c1
commit
e2140e62ca
2 changed files with 22 additions and 7 deletions
|
@ -19,7 +19,7 @@ type Client struct {
|
|||
die context.Context
|
||||
dieCancel context.CancelFunc
|
||||
|
||||
dialOut func(ctx context.Context) (net.Conn, error)
|
||||
dialOut util.DialOutFunc
|
||||
|
||||
sessionCounter atomic.Uint64
|
||||
idleSession *skiplist.SkipList[uint64, *Session]
|
||||
|
@ -31,7 +31,7 @@ type Client struct {
|
|||
minIdleSession int
|
||||
}
|
||||
|
||||
func NewClient(ctx context.Context, dialOut func(ctx context.Context) (net.Conn, error), _padding *atomic.TypedValue[*padding.PaddingFactory], idleSessionCheckInterval, idleSessionTimeout time.Duration, minIdleSession int) *Client {
|
||||
func NewClient(ctx context.Context, dialOut util.DialOutFunc, _padding *atomic.TypedValue[*padding.PaddingFactory], idleSessionCheckInterval, idleSessionTimeout time.Duration, minIdleSession int) *Client {
|
||||
c := &Client{
|
||||
dialOut: dialOut,
|
||||
padding: _padding,
|
||||
|
@ -83,10 +83,16 @@ func (c *Client) CreateStream(ctx context.Context) (net.Conn, error) {
|
|||
session.dieHook()
|
||||
}
|
||||
} else {
|
||||
c.idleSessionLock.Lock()
|
||||
session.idleSince = time.Now()
|
||||
c.idleSession.Insert(math.MaxUint64-session.seq, session)
|
||||
c.idleSessionLock.Unlock()
|
||||
select {
|
||||
case <-c.die.Done():
|
||||
// Now client has been closed
|
||||
go session.Close()
|
||||
default:
|
||||
c.idleSessionLock.Lock()
|
||||
session.idleSince = time.Now()
|
||||
c.idleSession.Insert(math.MaxUint64-session.seq, session)
|
||||
c.idleSessionLock.Unlock()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -131,7 +137,8 @@ func (c *Client) createSession(ctx context.Context) (*Session, error) {
|
|||
|
||||
func (c *Client) Close() error {
|
||||
c.dieCancel()
|
||||
go c.idleCleanupExpTime(time.Now())
|
||||
c.minIdleSession = 0
|
||||
go c.idleCleanupExpTime(time.Time{})
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
8
transport/anytls/util/type.go
Normal file
8
transport/anytls/util/type.go
Normal file
|
@ -0,0 +1,8 @@
|
|||
package util
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net"
|
||||
)
|
||||
|
||||
type DialOutFunc func(ctx context.Context) (net.Conn, error)
|
Loading…
Add table
Reference in a new issue