mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 01:38:24 -05:00
45 lines
858 B
Go
45 lines
858 B
Go
package http
|
|
|
|
import "crypto/tls"
|
|
|
|
// CertificateConfig is the config for TLS certificates used in HTTP proxy.
|
|
type CertificateConfig struct {
|
|
Domain string
|
|
Certificate tls.Certificate
|
|
}
|
|
|
|
// TlsConfig is the config for TLS connections.
|
|
type TLSConfig struct {
|
|
Enabled bool
|
|
Certs []*CertificateConfig
|
|
}
|
|
|
|
// GetConfig returns corresponding tls.Config.
|
|
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
|
|
}
|
|
|
|
// Config for HTTP proxy server.
|
|
type Config struct {
|
|
TLSConfig *TLSConfig
|
|
}
|
|
|
|
// ClientConfig for HTTP proxy client.
|
|
type ClientConfig struct {
|
|
}
|