Add support for use with android VPNService

This commit is contained in:
世界 2022-09-05 14:22:19 +08:00
parent 185b6c880a
commit 197b599075
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
11 changed files with 153 additions and 35 deletions

7
tun.go
View file

@ -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"