1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/transport/internet/tls/config_windows.go

14 lines
190 B
Go
Raw Normal View History

// +build windows
2018-04-13 04:01:10 -04:00
package tls
import "crypto/x509"
func (c *Config) getCertPool() (*x509.CertPool, error) {
if c.DisableSystemRoot {
return c.loadSelfCertPool()
}
2019-02-27 08:51:51 -05:00
return nil, nil
2018-04-13 04:01:10 -04:00
}