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

10 lines
116 B
Go
Raw Normal View History

2018-04-13 08:01:10 +00:00
// +build windows
package tls
import "crypto/x509"
2018-04-17 21:33:39 +00:00
func (c *Config) getCertPool() *x509.CertPool {
2018-04-13 08:01:10 +00:00
return nil
}