0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-16 05:17:16 +03:00
RPRX
2025-02-18 11:55:07 +00:00
committed by GitHub
parent 4b01eb4398
commit 52381a3c03
5 changed files with 12 additions and 12 deletions

View File

@ -32,7 +32,7 @@ type Observer struct {
finished *done.Instance
ohm outbound.Manager
ohm outbound.Manager
dispatcher routing.Dispatcher
}
@ -226,9 +226,9 @@ func New(ctx context.Context, config *Config) (*Observer, error) {
return nil, errors.New("Cannot get depended features").Base(err)
}
return &Observer{
config: config,
ctx: ctx,
ohm: outboundManager,
config: config,
ctx: ctx,
ohm: outboundManager,
dispatcher: dispatcher,
}, nil
}