Home
last modified time | relevance | path

Searched refs:cert_path (Results 1 – 5 of 5) sorted by relevance

/packages/modules/DnsResolver/doh/
Dconfig.rs59 match key.cert_path.as_deref() { in from_key()
127 pub cert_path: Option<String>, field
177 Config::from_key(&Key { cert_path: None, max_idle_timeout: 1000 }).is_ok(), in create_quiche_config()
182 cert_path: Some("data/local/tmp/".to_string()), in create_quiche_config()
194 let config_a = cache_a.get(&Key { cert_path: None, max_idle_timeout: 1000 }).unwrap(); in shared_cache()
196 let _config_b = cache_b.get(&Key { cert_path: None, max_idle_timeout: 1000 }).unwrap(); in shared_cache()
203 let key_a = Key { cert_path: None, max_idle_timeout: 1000 }; in different_keys()
204 let key_b = Key { cert_path: Some("a".to_string()), max_idle_timeout: 1000 }; in different_keys()
205 let key_c = Key { cert_path: Some("a".to_string()), max_idle_timeout: 5000 }; in different_keys()
223 let key_a = Key { cert_path: Some("a".to_string()), max_idle_timeout: 1000 }; in lifetimes()
[all …]
Dffi.rs190 cert_path: *const c_char, in doh_net_new()
193 let (url, domain, ip_addr, cert_path) = match ( in doh_net_new()
197 std::ffi::CStr::from_ptr(cert_path).to_str(), in doh_net_new()
199 (Ok(url), Ok(domain), Ok(ip_addr), Ok(cert_path)) => { in doh_net_new()
202 } else if !cert_path.is_empty() { in doh_net_new()
203 (url, Some(domain.to_string()), ip_addr.to_string(), Some(cert_path.to_string())) in doh_net_new()
233 cert_path, in doh_net_new()
384 cert_path: None, in wrap_validation_callback_converts_correctly()
/packages/modules/DnsResolver/doh/dispatcher/
Ddriver.rs118 cert_path: info.cert_path.clone(), in probe()
/packages/modules/DnsResolver/
Ddoh.h93 const char* ip_addr, uint32_t sk_mark, const char* cert_path,
/packages/modules/DnsResolver/doh/network/
Dmod.rs49 pub cert_path: Option<String>, field