Re: Disabling SSL Verification on std.net.curl

2014-05-16 Thread Jon Giddy via Digitalmars-d-learn
On Friday, 16 May 2014 at 07:37:33 UTC, Mengu wrote: On Friday, 16 May 2014 at 04:58:47 UTC, Jack wrote: std.net.curl.CurlException@std\net\curl.d(3592): problem with the SSL CA cert (path? access rights?) on handle 22D3D68 And since I am only using the program by myself for personal things

Re: Disabling SSL Verification on std.net.curl

2014-05-16 Thread Jack via Digitalmars-d-learn
On Friday, 16 May 2014 at 07:37:33 UTC, Mengu wrote: hi Jack curl has an option called SSL_VERIFYPEER which is supported by etc.c.curl: CurlOption. you can simply do the following: import std.stdio; import etc.c.curl : CurlOption; import std.net.curl; void main() { auto conn = HTTP();

Re: Disabling SSL Verification on std.net.curl

2014-05-16 Thread Mengu via Digitalmars-d-learn
On Friday, 16 May 2014 at 04:58:47 UTC, Jack wrote: A follow up from : http://forum.dlang.org/thread/nsdomtdbqqlylrmgo...@forum.dlang.org I discovered that it was not a C::B issue as I already compiled it with Xamarin Studio and it was still spewing out the error: std.net.curl.CurlException@