mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
Add support for use with android VPNService
This commit is contained in:
parent
185b6c880a
commit
197b599075
11 changed files with 153 additions and 35 deletions
7
tun.go
7
tun.go
|
@ -42,10 +42,13 @@ type Options struct {
|
|||
IncludeAndroidUser []int
|
||||
IncludePackage []string
|
||||
ExcludePackage []string
|
||||
InterfaceMonitor DefaultInterfaceMonitor
|
||||
}
|
||||
|
||||
func DefaultInterfaceName() (tunName string) {
|
||||
if runtime.GOOS == "darwin" {
|
||||
func CalculateInterfaceName(name string) (tunName string) {
|
||||
if name != "" {
|
||||
tunName = name
|
||||
} else if runtime.GOOS == "darwin" {
|
||||
tunName = "utun"
|
||||
} else {
|
||||
tunName = "tun"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue