Skip to content

Commit 923f21c

Browse files
committed
Add an option to ignore SSL revocation checking
This is apparently required in some Windows setups to get past SSL context creation in schannel.
1 parent be0b499 commit 923f21c

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ path = "src/cargo/lib.rs"
1919
[dependencies]
2020
crates-io = { path = "src/crates-io", version = "0.7" }
2121
crossbeam = "0.2"
22-
curl = "0.4"
22+
curl = "0.4.6"
2323
docopt = "0.7"
2424
env_logger = "0.4"
2525
filetime = "0.1"

src/cargo/ops/registry.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::iter::repeat;
55
use std::path::PathBuf;
66
use std::time::Duration;
77

8-
use curl::easy::Easy;
8+
use curl::easy::{Easy, SslOpt};
99
use git2;
1010
use registry::{Registry, NewCrate, NewCrateDependency};
1111
use term::color::BLACK;
@@ -231,6 +231,9 @@ pub fn http_handle(config: &Config) -> CargoResult<Easy> {
231231
if let Some(cainfo) = config.get_path("http.cainfo")? {
232232
handle.cainfo(&cainfo.val)?;
233233
}
234+
if let Some(check) = config.get_bool("http.check-revoke")? {
235+
handle.ssl_options(SslOpt::new().no_revoke(!check.val))?;
236+
}
234237
if let Some(timeout) = http_timeout(config)? {
235238
handle.connect_timeout(Duration::new(timeout as u64, 0))?;
236239
handle.low_speed_time(Duration::new(timeout as u64, 0))?;

src/doc/config.md

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ proxy = "host:port" # HTTP proxy to use for HTTP requests (defaults to none)
8383
# in libcurl format, e.g. "socks5h://host:port"
8484
timeout = 60000 # Timeout for each HTTP request, in milliseconds
8585
cainfo = "cert.pem" # Path to Certificate Authority (CA) bundle (optional)
86+
check-revoke = true # Indicates whether SSL certs are checked for revocation
8687

8788
[build]
8889
jobs = 1 # number of parallel jobs, defaults to # of CPUs

0 commit comments

Comments
 (0)