github.com/metacubex/mihomo@v1.18.5/listener/sing_tun/server_notwindows.go (about)

     1  //go:build !windows
     2  
     3  package sing_tun
     4  
     5  import (
     6  	tun "github.com/metacubex/sing-tun"
     7  )
     8  
     9  func tunNew(options tun.Options) (tun.Tun, error) {
    10  	return tun.New(options)
    11  }