1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 06:46:14 -04:00
v2fly/shell/point/config.go

87 lines
2.1 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 (
2016-05-16 03:25:34 -04: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-06-01 19:49:25 -04:00
"github.com/v2ray/v2ray-core/transport"
2016-06-14 16:54:08 -04:00
"github.com/v2ray/v2ray-core/transport/internet"
2015-11-21 15:43:40 -05:00
)
2016-06-03 18:38:22 -04:00
type InboundConnectionConfig struct {
2016-06-14 16:54:08 -04:00
Port v2net.Port
ListenOn v2net.Address
StreamSettings *internet.StreamSettings
Protocol string
Settings []byte
2015-09-12 16:11:54 -04:00
}
2016-06-03 18:38:22 -04:00
type OutboundConnectionConfig struct {
2016-06-14 16:54:08 -04:00
Protocol string
SendThrough v2net.Address
StreamSettings *internet.StreamSettings
Settings []byte
2016-06-03 18:38:22 -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
}
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 {
2016-06-14 16:54:08 -04:00
Protocol string
PortRange v2net.PortRange
ListenOn v2net.Address
Tag string
Allocation *InboundDetourAllocationConfig
StreamSettings *internet.StreamSettings
Settings []byte
2015-10-31 09:08:13 -04:00
}
2016-01-17 15:43:10 -05:00
type OutboundDetourConfig struct {
2016-06-14 16:54:08 -04:00
Protocol string
SendThrough v2net.Address
StreamSettings *internet.StreamSettings
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
2016-05-16 03:25:34 -04:00
DNSConfig *dns.Config
2016-06-03 18:38:22 -04:00
InboundConfig *InboundConnectionConfig
OutboundConfig *OutboundConnectionConfig
2016-01-17 15:43:10 -05:00
InboundDetours []*InboundDetourConfig
OutboundDetours []*OutboundDetourConfig
2016-06-01 19:49:25 -04:00
TransportConfig *transport.Config
2016-01-17 15:43:10 -05:00
}
type ConfigLoader func(init string) (*Config, error)
var (
configLoader ConfigLoader
)
func LoadConfig(init string) (*Config, error) {
if configLoader == nil {
return nil, ErrorBadConfiguration
2016-01-17 15:43:10 -05:00
}
return configLoader(init)
2015-09-12 16:11:54 -04:00
}