Add android package route support

This commit is contained in:
世界 2022-08-15 11:10:27 +08:00
parent b828f01643
commit 1407eae46b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 276 additions and 36 deletions

17
packages.go Normal file
View file

@ -0,0 +1,17 @@
package tun
import E "github.com/sagernet/sing/common/exceptions"
type PackageManager interface {
Start() error
Close() error
IDByPackage(packageName string) ([]uint32, bool)
IDBySharedPackage(sharedPackage string) (uint32, bool)
PackageByID(id uint32) (string, bool)
SharedPackageByID(id uint32) (string, bool)
}
type PackageManagerCallback interface {
OnPackagesUpdated(packages int, sharedUsers int)
E.Handler
}