1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 19:44:32 -04:00
v2fly/proxy/freedom/config.go

14 lines
212 B
Go
Raw Normal View History

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