chore: update anytls (#1863)

Co-authored-by: anytls <anytls>
This commit is contained in:
anytls 2025-02-26 11:17:12 +08:00 committed by GitHub
parent 8d783c65c1
commit e2140e62ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 7 deletions

View file

@ -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
}

View file

@ -0,0 +1,8 @@
package util
import (
"context"
"net"
)
type DialOutFunc func(ctx context.Context) (net.Conn, error)