1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-16 00:48:14 -04:00
v2fly/proxy/freedom/config.go

13 lines
189 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
2015-12-06 12:21:15 -05:00
}