mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 12:27:36 +03:00
Add multiplexer
This commit is contained in:
parent
83154eadd3
commit
457de86819
47 changed files with 1244 additions and 174 deletions
3
box.go
3
box.go
|
@ -124,6 +124,7 @@ func New(ctx context.Context, options option.Options) (*Box, error) {
|
|||
tag = F.ToString(i)
|
||||
}
|
||||
out, err = outbound.New(
|
||||
ctx,
|
||||
router,
|
||||
logFactory.NewLogger(F.ToString("outbound/", outboundOptions.Type, "[", tag, "]")),
|
||||
outboundOptions)
|
||||
|
@ -133,7 +134,7 @@ func New(ctx context.Context, options option.Options) (*Box, error) {
|
|||
outbounds = append(outbounds, out)
|
||||
}
|
||||
err = router.Initialize(outbounds, func() adapter.Outbound {
|
||||
out, oErr := outbound.New(router, logFactory.NewLogger("outbound/direct"), option.Outbound{Type: "direct", Tag: "default"})
|
||||
out, oErr := outbound.New(ctx, router, logFactory.NewLogger("outbound/direct"), option.Outbound{Type: "direct", Tag: "default"})
|
||||
common.Must(oErr)
|
||||
outbounds = append(outbounds, out)
|
||||
return out
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue