mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Close stack faster
This commit is contained in:
parent
d5dd3b3bb1
commit
4a805410a2
2 changed files with 3 additions and 3 deletions
|
@ -30,6 +30,7 @@ type GVisorTun struct {
|
||||||
endpointIndependentNatTimeout int64
|
endpointIndependentNatTimeout int64
|
||||||
handler Handler
|
handler Handler
|
||||||
stack *stack.Stack
|
stack *stack.Stack
|
||||||
|
endpoint stack.LinkEndpoint
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewGVisor(
|
func NewGVisor(
|
||||||
|
@ -158,10 +159,12 @@ func (t *GVisorTun) Start() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
t.stack = ipStack
|
t.stack = ipStack
|
||||||
|
t.endpoint = linkEndpoint
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *GVisorTun) Close() error {
|
func (t *GVisorTun) Close() error {
|
||||||
|
t.endpoint.Attach(nil)
|
||||||
t.stack.Close()
|
t.stack.Close()
|
||||||
for _, endpoint := range t.stack.CleanupEndpoints() {
|
for _, endpoint := range t.stack.CleanupEndpoints() {
|
||||||
endpoint.Abort()
|
endpoint.Abort()
|
||||||
|
|
|
@ -63,9 +63,6 @@ func (m *networkUpdateMonitor) Start() error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
go m.loopUpdate()
|
go m.loopUpdate()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue