| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package manager
- import (
- "context"
- "v2ray.com/core/app/policy"
- "v2ray.com/core/common"
- )
- type Instance struct {
- levels map[uint32]*policy.Policy
- }
- func New(ctx context.Context, config *policy.Config) (*Instance, error) {
- levels := config.Level
- if levels == nil {
- levels = make(map[uint32]*policy.Policy)
- }
- for _, p := range levels {
- g := global()
- g.OverrideWith(p)
- *p = g
- }
- return &Instance{
- levels: levels,
- }, nil
- }
- func global() policy.Policy {
- return policy.Policy{
- Timeout: &policy.Policy_Timeout{
- Handshake: &policy.Second{Value: 4},
- ConnectionIdle: &policy.Second{Value: 300},
- UplinkOnly: &policy.Second{Value: 5},
- DownlinkOnly: &policy.Second{Value: 30},
- },
- }
- }
- func (m *Instance) GetPolicy(level uint32) policy.Policy {
- if p, ok := m.levels[level]; ok {
- return *p
- }
- return global()
- }
- func (m *Instance) Start() error {
- return nil
- }
- func (m *Instance) Close() {
- }
- func (m *Instance) Interface() interface{} {
- return (*policy.Manager)(nil)
- }
- func init() {
- common.Must(common.RegisterConfig((*policy.Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
- return New(ctx, config.(*policy.Config))
- }))
- }
|