mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 20:37:37 +03:00
Fix close platform tun
This commit is contained in:
parent
d824390167
commit
c77681ea17
3 changed files with 8 additions and 4 deletions
|
@ -75,7 +75,11 @@ func (w *platformInterfaceWrapper) OpenTun(options tun.Options, platformOptions
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
options.FileDescriptor = int(tunFd)
|
||||
dupFd, err := syscall.Dup(int(tunFd))
|
||||
if err != nil {
|
||||
return nil, E.Cause(err, "dup tun file descriptor")
|
||||
}
|
||||
options.FileDescriptor = dupFd
|
||||
return tun.New(options)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue