mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-04 05:33:35 +03:00
fix: memory leak due to unclosed session (#1908)
This commit is contained in:
parent
1e22f4daa9
commit
dee5898e36
1 changed files with 22 additions and 1 deletions
|
@ -23,6 +23,23 @@ type Option struct {
|
|||
Mux bool
|
||||
}
|
||||
|
||||
// muxConn is a wrapper around smux.Stream that also closes the session when closed
|
||||
type muxConn struct {
|
||||
net.Conn
|
||||
session *smux.Session
|
||||
}
|
||||
|
||||
func (m *muxConn) Close() error {
|
||||
streamErr := m.Conn.Close()
|
||||
sessionErr := m.session.Close()
|
||||
|
||||
// Return stream error if there is one, otherwise return session error
|
||||
if streamErr != nil {
|
||||
return streamErr
|
||||
}
|
||||
return sessionErr
|
||||
}
|
||||
|
||||
// NewGostWebsocket return a gost websocket
|
||||
func NewGostWebsocket(ctx context.Context, conn net.Conn, option *Option) (net.Conn, error) {
|
||||
header := http.Header{}
|
||||
|
@ -72,10 +89,14 @@ func NewGostWebsocket(ctx context.Context, conn net.Conn, option *Option) (net.C
|
|||
|
||||
stream, err := session.OpenStream()
|
||||
if err != nil {
|
||||
session.Close()
|
||||
return nil, err
|
||||
}
|
||||
|
||||
conn = stream
|
||||
return &muxConn{
|
||||
Conn: stream,
|
||||
session: session,
|
||||
}, nil
|
||||
}
|
||||
return conn, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue