mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
stack: Fix close before start
This commit is contained in:
parent
f9755b8947
commit
c09544f29d
2 changed files with 6 additions and 0 deletions
|
@ -152,6 +152,9 @@ func (t *GVisor) Start() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *GVisor) Close() error {
|
func (t *GVisor) Close() error {
|
||||||
|
if t.stack == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
t.endpoint.Attach(nil)
|
t.endpoint.Attach(nil)
|
||||||
t.stack.Close()
|
t.stack.Close()
|
||||||
for _, endpoint := range t.stack.CleanupEndpoints() {
|
for _, endpoint := range t.stack.CleanupEndpoints() {
|
||||||
|
|
|
@ -260,6 +260,9 @@ func (m *Mixed) packetLoop() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Mixed) Close() error {
|
func (m *Mixed) Close() error {
|
||||||
|
if m.stack == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
m.endpoint.Attach(nil)
|
m.endpoint.Attach(nil)
|
||||||
m.stack.Close()
|
m.stack.Close()
|
||||||
for _, endpoint := range m.stack.CleanupEndpoints() {
|
for _, endpoint := range m.stack.CleanupEndpoints() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue