mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47: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
|
||||
handler Handler
|
||||
stack *stack.Stack
|
||||
endpoint stack.LinkEndpoint
|
||||
}
|
||||
|
||||
func NewGVisor(
|
||||
|
@ -158,10 +159,12 @@ func (t *GVisorTun) Start() error {
|
|||
}
|
||||
|
||||
t.stack = ipStack
|
||||
t.endpoint = linkEndpoint
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *GVisorTun) Close() error {
|
||||
t.endpoint.Attach(nil)
|
||||
t.stack.Close()
|
||||
for _, endpoint := range t.stack.CleanupEndpoints() {
|
||||
endpoint.Abort()
|
||||
|
|
|
@ -63,9 +63,6 @@ func (m *networkUpdateMonitor) Start() error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
go m.loopUpdate()
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue