Todd
Todd
Keeping this ticket open. There is a set interface now, but it's still very minimal as far as what can be set.
@driehuis are you saying curb doesn't support SNI? This seems like something, that should be supported by default... e.g. ``` res = Curl.get("https://www.google.com/") puts res.header_str puts res.body_str ``` This should...
Pretty sure it is called if there is a 30x response code
@bootstraponline this is usually a system issue or the domain you're requesting has an invalid certificate...
@gdonald i always welcome pull requests. It is probably not too hard for you to fix right?
@gdonald do you have an example of it failing? I could always take a look if you have a failing example.
I think you may want to try ssl_verify_host=0
Interesting, Curl::Easy is implemented in the ruby client using a Curb::Multi handler... How are you passing data into the Multi handler?
This is a ruby layer function - added to make the API a bit easier to work with. It'd be good to modify to work the way you describe. The...
I believe you can use set? Curl::CURLOPT_CAPATH e.g. easy.set(Curl::CURLOPT_CAPATH, "path.to.your.bundle") # ? try that and let us know