mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Fix darwin write
This commit is contained in:
parent
9c905191f6
commit
1cc817596b
3 changed files with 8 additions and 3 deletions
|
@ -50,7 +50,11 @@ func Open(options Options) (Tun, error) {
|
|||
inet4Address: string(options.Inet4Address.Addr().AsSlice()),
|
||||
inet6Address: string(options.Inet6Address.Addr().AsSlice()),
|
||||
}
|
||||
nativeTun.tunWriter, _ = bufio.CreateVectorisedWriter(nativeTun.tunFile)
|
||||
var ok bool
|
||||
nativeTun.tunWriter, ok = bufio.CreateVectorisedWriter(nativeTun.tunFile)
|
||||
if !ok {
|
||||
panic("create vectorised writer")
|
||||
}
|
||||
runtime.SetFinalizer(nativeTun.tunFile, nil)
|
||||
return nativeTun, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue