mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 03:12:22 +08:00
Minor fixes
This commit is contained in:
parent
8b64446274
commit
afd3464216
2
box.go
2
box.go
|
@ -277,7 +277,7 @@ func (s *Box) Close() error {
|
|||
}
|
||||
for i, out := range s.outbounds {
|
||||
errors = E.Append(errors, common.Close(out), func(err error) error {
|
||||
return E.Cause(err, "close inbound/", out.Type(), "[", i, "]")
|
||||
return E.Cause(err, "close outbound/", out.Type(), "[", i, "]")
|
||||
})
|
||||
}
|
||||
if err := common.Close(s.router); err != nil {
|
||||
|
|
|
@ -179,5 +179,6 @@ func (w *WireGuard) Close() error {
|
|||
if w.device != nil {
|
||||
w.device.Close()
|
||||
}
|
||||
return common.Close(w.tunDevice)
|
||||
w.tunDevice.Close()
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user