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

10 lines
116 B
Go
Raw Normal View History

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