mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 09:56:18 -05:00
51 lines
831 B
Go
51 lines
831 B
Go
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
|
|
}
|
|
|
|
func (this *TlsConfig) GetConfig() *tls.Config {
|
|
if !this.Enabled {
|
|
return nil
|
|
}
|
|
|
|
config := &tls.Config{
|
|
InsecureSkipVerify: false,
|
|
}
|
|
|
|
config.Certificates = make([]tls.Certificate, len(this.Certs))
|
|
for index, cert := range this.Certs {
|
|
config.Certificates[index] = cert.Certificate
|
|
}
|
|
|
|
config.BuildNameToCertificate()
|
|
|
|
return config
|
|
}
|
|
|
|
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
|
|
}
|