v2ray-core/proxy/freedom/config.go

14 lines
212 B
Go
Raw Normal View History

2015-12-06 17:21:15 +00:00
package freedom
2016-05-22 20:30:21 +00:00
type DomainStrategy int
const (
DomainStrategyAsIs = DomainStrategy(0)
DomainStrategyUseIP = DomainStrategy(1)
)
type Config struct {
2016-05-22 20:30:21 +00:00
DomainStrategy DomainStrategy
2016-06-02 21:18:44 +00:00
Timeout uint32
2015-12-06 17:21:15 +00:00
}