Xray-core/transport/internet/tls/config_windows.go

15 lines
209 B
Go
Raw Normal View History

2021-09-20 16:00:55 +03:00
//go:build windows
2020-11-25 13:01:53 +02:00
// +build windows
package tls
import "crypto/x509"
func (c *Config) getCertPool() (*x509.CertPool, error) {
if c.DisableSystemRoot {
return c.loadSelfCertPool()
}
return nil, nil
}