openssl_probe

Function probe

Source
pub fn probe() -> ProbeResult
Examples found in repository?
examples/probe.rs (line 2)
1
2
3
4
5
6
fn main() {
    let r = openssl_probe::probe();

    println!("cert_dir: {:?}", r.cert_dir);
    println!("cert_file: {:?}", r.cert_file);
}