mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Add android package route support
This commit is contained in:
parent
b828f01643
commit
1407eae46b
7 changed files with 276 additions and 36 deletions
17
packages.go
Normal file
17
packages.go
Normal 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue