Xray-core/transport/internet/tls/config_windows.go
2021-09-20 21:00:55 +08:00

15 lines
209 B
Go

//go:build windows
// +build windows
package tls
import "crypto/x509"
func (c *Config) getCertPool() (*x509.CertPool, error) {
if c.DisableSystemRoot {
return c.loadSelfCertPool()
}
return nil, nil
}