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()
130 pub cert_path: Option<String>, field
181 Config::from_key(&Key { cert_path: None, max_idle_timeout: 1000, enable_early_data: true }) in create_quiche_config()
187 cert_path: Some("data/local/tmp/".to_string()), in create_quiche_config()
200 .get(&Key { cert_path: None, max_idle_timeout: 1000, enable_early_data: true }) in shared_cache()
204 .get(&Key { cert_path: None, max_idle_timeout: 1000, enable_early_data: true }) in shared_cache()
212 let key_a = Key { cert_path: None, max_idle_timeout: 1000, enable_early_data: false }; in different_keys()
214 Key { cert_path: Some("a".to_string()), max_idle_timeout: 1000, enable_early_data: false }; in different_keys()
216 Key { cert_path: Some("a".to_string()), max_idle_timeout: 5000, enable_early_data: false }; in different_keys()
218 Key { cert_path: Some("a".to_string()), max_idle_timeout: 5000, enable_early_data: true }; in different_keys()
[all …]
Dffi.rs200 cert_path: *const c_char, in doh_net_new()
206 let (url, domain, ip_addr, cert_path) = match unsafe { in doh_net_new()
211 std::ffi::CStr::from_ptr(cert_path).to_str(), in doh_net_new()
214 (Ok(url), Ok(domain), Ok(ip_addr), Ok(cert_path)) => { in doh_net_new()
217 } else if !cert_path.is_empty() { in doh_net_new()
218 (url, Some(domain.to_string()), ip_addr.to_string(), Some(cert_path.to_string())) in doh_net_new()
248 cert_path, in doh_net_new()
411 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.h94 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