@@ -3,72 +3,33 @@ package core
3
3
import (
4
4
"io"
5
5
6
- "v2ray.com/core/app/dns"
7
- "v2ray.com/core/app/router"
8
6
"v2ray.com/core/common"
9
- "v2ray.com/core/common/log"
10
- v2net "v2ray.com/core/common/net"
11
- "v2ray.com/core/transport"
12
- "v2ray.com/core/transport/internet"
7
+ "v2ray.com/core/proxy/registry"
13
8
)
14
9
15
- type InboundConnectionConfig struct {
16
- Port v2net.Port
17
- ListenOn v2net.Address
18
- StreamSettings * internet.StreamConfig
19
- Protocol string
20
- Settings []byte
21
- AllowPassiveConnection bool
22
- }
23
-
24
- type OutboundConnectionConfig struct {
25
- Protocol string
26
- SendThrough v2net.Address
27
- StreamSettings * internet.StreamConfig
28
- Settings []byte
29
- }
30
-
31
- const (
32
- AllocationStrategyAlways = "always"
33
- AllocationStrategyRandom = "random"
34
- AllocationStrategyExternal = "external"
35
- )
36
-
37
- type InboundDetourAllocationConfig struct {
38
- Strategy string // Allocation strategy of this inbound detour.
39
- Concurrency int // Number of handlers (ports) running in parallel.
40
- Refresh int // Number of minutes before a handler is regenerated.
10
+ func (this * AllocationStrategyConcurrency ) GetValue () uint32 {
11
+ if this == nil {
12
+ return 3
13
+ }
14
+ return this .Value
41
15
}
42
16
43
- type InboundDetourConfig struct {
44
- Protocol string
45
- PortRange v2net.PortRange
46
- ListenOn v2net.Address
47
- Tag string
48
- Allocation * InboundDetourAllocationConfig
49
- StreamSettings * internet.StreamConfig
50
- Settings []byte
51
- AllowPassiveConnection bool
17
+ func (this * AllocationStrategyRefresh ) GetValue () uint32 {
18
+ if this == nil {
19
+ return 5
20
+ }
21
+ return this .Value
52
22
}
53
23
54
- type OutboundDetourConfig struct {
55
- Protocol string
56
- SendThrough v2net.Address
57
- StreamSettings * internet.StreamConfig
58
- Tag string
59
- Settings []byte
24
+ func (this * InboundConnectionConfig ) GetAllocationStrategyValue () * AllocationStrategy {
25
+ if this .AllocationStrategy == nil {
26
+ return & AllocationStrategy {}
27
+ }
28
+ return this .AllocationStrategy
60
29
}
61
30
62
- type Config struct {
63
- Port v2net.Port
64
- LogConfig * log.Config
65
- RouterConfig * router.Config
66
- DNSConfig * dns.Config
67
- InboundConfig * InboundConnectionConfig
68
- OutboundConfig * OutboundConnectionConfig
69
- InboundDetours []* InboundDetourConfig
70
- OutboundDetours []* OutboundDetourConfig
71
- TransportConfig * transport.Config
31
+ func (this * InboundConnectionConfig ) GetTypedSettings () (interface {}, error ) {
32
+ return registry .MarshalInboundConfig (this .Protocol , this .Settings )
72
33
}
73
34
74
35
type ConfigLoader func (input io.Reader ) (* Config , error )
0 commit comments