1
0
Fork 0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-07-19 16:34:16 +00:00

Fix issues related to android client ()

* WireGuard: Fix tunnel not closed

* Dialer: Apply controllers in lc.Control
This commit is contained in:
Cl-He-O 2025-04-14 15:08:26 +00:00 committed by GitHub
parent 53552d73cc
commit 7a2f42f8d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 0 deletions
app/proxyman/outbound

View file

@ -325,6 +325,7 @@ func (h *Handler) Start() error {
// Close implements common.Closable.
func (h *Handler) Close() error {
common.Close(h.mux)
common.Close(h.proxy)
return nil
}