1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-15 09:44:37 -04:00
v2fly/shell/point/config.go

74 lines
1.5 KiB
Go
Raw Normal View History

2015-12-06 10:41:41 -05:00
package point
2015-10-06 17:11:08 -04:00
2015-11-21 15:43:40 -05:00
import (
2015-12-06 05:00:10 -05:00
"github.com/v2ray/v2ray-core/app/dns"
2015-12-07 16:47:47 -05:00
"github.com/v2ray/v2ray-core/app/router"
2015-12-05 15:10:14 -05:00
"github.com/v2ray/v2ray-core/common/log"
2015-11-21 15:43:40 -05:00
v2net "github.com/v2ray/v2ray-core/common/net"
)
2016-01-17 15:43:10 -05:00
type ConnectionConfig struct {
Protocol string
Settings []byte
2015-09-12 16:11:54 -04:00
}
2016-01-17 15:43:10 -05:00
type LogConfig struct {
AccessLog string
ErrorLog string
LogLevel log.LogLevel
2015-10-09 11:43:27 -04:00
}
2016-01-17 15:43:10 -05:00
type DnsConfig struct {
Enabled bool
Settings *dns.CacheConfig
2015-12-06 05:00:10 -05:00
}
2015-12-28 17:17:38 -05:00
const (
AllocationStrategyAlways = "always"
AllocationStrategyRandom = "random"
AllocationStrategyExternal = "external"
)
2016-01-17 15:43:10 -05:00
type InboundDetourAllocationConfig struct {
Strategy string // Allocation strategy of this inbound detour.
Concurrency int // Number of handlers (ports) running in parallel.
Refresh int // Number of minutes before a handler is regenerated.
2015-12-28 17:17:38 -05:00
}
2016-01-17 15:43:10 -05:00
type InboundDetourConfig struct {
Protocol string
PortRange v2net.PortRange
Tag string
Allocation *InboundDetourAllocationConfig
Settings []byte
2015-10-31 09:08:13 -04:00
}
2016-01-17 15:43:10 -05:00
type OutboundDetourConfig struct {
Protocol string
Tag string
Settings []byte
2015-11-13 17:43:58 -05:00
}
2016-01-17 15:43:10 -05:00
type Config struct {
Port v2net.Port
LogConfig *LogConfig
RouterConfig *router.Config
InboundConfig *ConnectionConfig
OutboundConfig *ConnectionConfig
InboundDetours []*InboundDetourConfig
OutboundDetours []*OutboundDetourConfig
}
type ConfigLoader func(init string) (*Config, error)
var (
configLoader ConfigLoader
)
func LoadConfig(init string) (*Config, error) {
if configLoader == nil {
return nil, BadConfiguration
}
return configLoader(init)
2015-09-12 16:11:54 -04:00
}