mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
Fix close platform tun
This commit is contained in:
parent
20226b91c9
commit
839f1792e4
1 changed files with 6 additions and 0 deletions
|
@ -525,6 +525,9 @@ func (t *NativeTun) setRules() error {
|
|||
}
|
||||
|
||||
func (t *NativeTun) unsetRoute() error {
|
||||
if t.options.FileDescriptor > 0 {
|
||||
return nil
|
||||
}
|
||||
tunLink, err := netlink.LinkByName(t.options.Name)
|
||||
if err != nil {
|
||||
return err
|
||||
|
@ -540,6 +543,9 @@ func (t *NativeTun) unsetRoute0(tunLink netlink.Link) error {
|
|||
}
|
||||
|
||||
func (t *NativeTun) unsetRules() error {
|
||||
if t.options.FileDescriptor > 0 {
|
||||
return nil
|
||||
}
|
||||
if len(t.ruleIndex6) > 0 {
|
||||
for _, index := range t.ruleIndex6 {
|
||||
ruleToDel := netlink.NewRule()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue