Skip to content

Commit 0a32345

Browse files
committed
protobuf for v2ray config
1 parent f87d7f3 commit 0a32345

9 files changed

+479
-536
lines changed

config.go

+18-57
Original file line numberDiff line numberDiff line change
@@ -3,72 +3,33 @@ package core
33
import (
44
"io"
55

6-
"v2ray.com/core/app/dns"
7-
"v2ray.com/core/app/router"
86
"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"
138
)
149

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
4115
}
4216

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
5222
}
5323

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
6029
}
6130

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)
7233
}
7334

7435
type ConfigLoader func(input io.Reader) (*Config, error)

0 commit comments

Comments
 (0)