Mb just add the top cert to trusted list?
I am making a request between servers and I am getting a server certificate verification failure / self-signed certificate failure. As the servers are currently development servers, and I do not care about self-signed certificates just yet, how do I tell the curlpp library to ignore such an "error"?For reference (if needed), I am currently working off the example04.cpp code.
--
You received this message because you are subscribed to the Google Groups "curlpp" group.
To unsubscribe from this group and stop receiving emails from it, send an email to curlpp+un...@googlegroups.com.
To post to this group, send email to cur...@googlegroups.com.
Visit this group at http://groups.google.com/group/curlpp.
For more options, visit https://groups.google.com/d/optout.
curlpp::Easy request;
request.setOpt(curlpp::options::SslVerifyPeer(false));
request.setOpt(curlpp::options::SslVerifyHost(false));