mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 20:37:37 +03:00
Fix platform wrapper
This commit is contained in:
parent
60094884cd
commit
140ed9a4cb
9 changed files with 339 additions and 27 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"context"
|
||||
"net/netip"
|
||||
"os"
|
||||
"runtime"
|
||||
"syscall"
|
||||
|
||||
"github.com/sagernet/sing-box"
|
||||
|
@ -27,6 +28,7 @@ func NewService(configContent string, platformInterface PlatformInterface) (*Box
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
platformInterface.WriteLog("Hello " + runtime.GOOS + "/" + runtime.GOARCH)
|
||||
options.PlatformInterface = &platformInterfaceWrapper{platformInterface, platformInterface.UseProcFS()}
|
||||
ctx, cancel := context.WithCancel(context.Background())
|
||||
instance, err := box.New(ctx, options)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue