github.com/v2fly/v2ray-core/v4@v4.45.2/transport/internet/tls/config_windows.go (about) 1 //go:build windows && !confonly 2 // +build windows,!confonly 3 4 package tls 5 6 import "crypto/x509" 7 8 func (c *Config) getCertPool() (*x509.CertPool, error) { 9 if c.DisableSystemRoot { 10 return c.loadSelfCertPool() 11 } 12 13 return nil, nil 14 }