| 12345678910111213141516171819202122232425262728293031 |
- package http
- import (
- "crypto/tls"
- v2net "github.com/v2ray/v2ray-core/common/net"
- )
- type CertificateConfig struct {
- Domain string
- Certificate tls.Certificate
- }
- type TlsConfig struct {
- Enabled bool
- Certs []*CertificateConfig
- }
- type Config struct {
- OwnHosts []v2net.Address
- TlsConfig *TlsConfig
- }
- func (this *Config) IsOwnHost(host v2net.Address) bool {
- for _, ownHost := range this.OwnHosts {
- if ownHost.Equals(host) {
- return true
- }
- }
- return false
- }
|