2015-12-14 16:26:29 +00:00
|
|
|
package http
|
|
|
|
|
2016-01-26 10:28:09 +00:00
|
|
|
import (
|
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
|
|
)
|
|
|
|
|
2016-04-25 13:30:28 +00:00
|
|
|
type TlsConfig struct {
|
|
|
|
Enabled bool
|
|
|
|
CertFile string
|
|
|
|
KeyFile string
|
|
|
|
}
|
|
|
|
|
2016-01-15 11:43:06 +00:00
|
|
|
type Config struct {
|
2016-04-25 13:30:28 +00:00
|
|
|
OwnHosts []v2net.Address
|
|
|
|
TlsConfig *TlsConfig
|
2016-01-26 10:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *Config) IsOwnHost(host v2net.Address) bool {
|
|
|
|
for _, ownHost := range this.OwnHosts {
|
|
|
|
if ownHost.Equals(host) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
2015-12-14 16:26:29 +00:00
|
|
|
}
|