mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +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 {
|
func (t *NativeTun) unsetRoute() error {
|
||||||
|
if t.options.FileDescriptor > 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
tunLink, err := netlink.LinkByName(t.options.Name)
|
tunLink, err := netlink.LinkByName(t.options.Name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -540,6 +543,9 @@ func (t *NativeTun) unsetRoute0(tunLink netlink.Link) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *NativeTun) unsetRules() error {
|
func (t *NativeTun) unsetRules() error {
|
||||||
|
if t.options.FileDescriptor > 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
if len(t.ruleIndex6) > 0 {
|
if len(t.ruleIndex6) > 0 {
|
||||||
for _, index := range t.ruleIndex6 {
|
for _, index := range t.ruleIndex6 {
|
||||||
ruleToDel := netlink.NewRule()
|
ruleToDel := netlink.NewRule()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue