Lines Matching refs:cert_path
59 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()
224 let key_b = Key { cert_path: Some("b".to_string()), max_idle_timeout: 1000 }; in lifetimes()
225 let config_none = cache.get(&Key { cert_path: None, max_idle_timeout: 1000 }).unwrap(); in lifetimes()
271 let mut config = Config::from_key(&Key { cert_path: None, max_idle_timeout: 10 }).unwrap(); in quiche_connect()