mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Fix interface monitor for android
This commit is contained in:
parent
20e9da5c67
commit
b498a22972
10 changed files with 342 additions and 29 deletions
6
box.go
6
box.go
|
@ -133,6 +133,12 @@ func New(options Options) (*Box, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if options.PlatformInterface != nil {
|
||||
err = options.PlatformInterface.Initialize(ctx, router)
|
||||
if err != nil {
|
||||
return nil, E.Cause(err, "initialize platform interface")
|
||||
}
|
||||
}
|
||||
preServices := make(map[string]adapter.Service)
|
||||
postServices := make(map[string]adapter.Service)
|
||||
if needClashAPI {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue