Displaying 3 results from an estimated 3 matches for "curl_ca_bundl".
Did you mean:
curl_ca_bundle
2017 Mar 27
1
R libcurl does not recognize server certs
Dirk,
ive changed the subject given the nature of the present debugging. Im aware i can extend extras from download.file to install.packages however
im curious to know why libcurl in the R invocation does not honor the CA bundle on my system.
how would I pass a CA bundle to install.packages? the function has numerous arguments before the extras are taken.
John Roman
Linux System Administrator
2017 Feb 06
0
Fwd: issue
...lv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY
HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo
G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA
lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr
Looking at ?download.file i've tried setting manually
CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
in .Renviron, but without success
> tools:::.check_packages()
* using log directory ?/home/l/src/rpkg/lbmisc.Rcheck?
* using R version 3.3.2 (2016-10-31)
* using platform: x86_64-pc-linux-gnu (64-bit)
* using session charset: UTF-8
* using options ?--no-bui...
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
...9c7240ef..6bf01ef175 100644
--- a/src/modules/internet/libcurl.c
+++ b/src/modules/internet/libcurl.c
@@ -222,7 +222,6 @@ static int curlMultiCheckerrs(CURLM *mhnd)
}
return retval;
}
-
static void curlCommon(CURL *hnd, int redirect, int verify)
{
const char *capath = getenv("CURL_CA_BUNDLE");
@@ -469,10 +468,10 @@ in_do_curlDownload(SEXP call, SEXP op, SEXP
args, SEXP rho)
error(_("download.file(method = \"libcurl\") is not supported on
this platform"));
return R_NilValue;
#else
- SEXP scmd, sfile, smode;
+ SEXP scmd, sfile, smode, sheaders;...