1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-17 17:36:08 -04:00
v2fly/proxy/http/config.go

19 lines
288 B
Go
Raw Normal View History

2015-12-14 11:26:29 -05:00
package http
2016-01-26 05:28:09 -05:00
import (
v2net "github.com/v2ray/v2ray-core/common/net"
)
type Config struct {
2016-01-26 05:28:09 -05:00
OwnHosts []v2net.Address
}
func (this *Config) IsOwnHost(host v2net.Address) bool {
for _, ownHost := range this.OwnHosts {
if ownHost.Equals(host) {
return true
}
}
return false
2015-12-14 11:26:29 -05:00
}