Home
last modified time | relevance | path

Searched refs:domain_match (Results 1 – 13 of 13) sorted by relevance

/external/wpa_supplicant_8/src/crypto/
Dtls_gnutls.c63 char *domain_match; member
287 os_free(conn->domain_match); in tls_connection_deinit()
384 os_free(conn->domain_match); in tls_connection_set_params()
385 conn->domain_match = NULL; in tls_connection_set_params()
386 if (params->domain_match) { in tls_connection_set_params()
387 conn->domain_match = os_strdup(params->domain_match); in tls_connection_set_params()
388 if (conn->domain_match == NULL) in tls_connection_set_params()
392 if (params->domain_match) { in tls_connection_set_params()
1204 if (conn->domain_match && in tls_connection_verify_peer()
1206 cert, conn->domain_match, in tls_connection_verify_peer()
[all …]
Dtls_openssl.c233 char *subject_match, *altsubject_match, *suffix_match, *domain_match; member
1536 os_free(conn->domain_match); in tls_connection_deinit()
1921 char *match, *altmatch, *suffix_match, *domain_match; in tls_verify_cb() local
1949 domain_match = conn->domain_match; in tls_verify_cb()
2038 } else if (depth == 0 && domain_match && in tls_verify_cb()
2039 !tls_match_suffix(err_cert, domain_match, 1)) { in tls_verify_cb()
2041 domain_match); in tls_verify_cb()
2384 const char *domain_match) in tls_connection_set_subject_match() argument
2410 os_free(conn->domain_match); in tls_connection_set_subject_match()
2411 conn->domain_match = NULL; in tls_connection_set_subject_match()
[all …]
Dtls.h168 const char *domain_match; member
Dtls_internal.c231 if (params->domain_match) { in tls_connection_set_params()
/external/python/cpython2/Lib/test/
Dtest_cookielib.py705 from cookielib import domain_match, user_domain_match
706 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
707 self.assertFalse(domain_match("192.168.1.1", ".168.1.1"))
708 self.assertTrue(domain_match("x.y.com", "x.Y.com"))
709 self.assertTrue(domain_match("x.y.com", ".Y.com"))
710 self.assertFalse(domain_match("x.y.com", "Y.com"))
711 self.assertTrue(domain_match("a.b.c.com", ".c.com"))
712 self.assertFalse(domain_match(".c.com", "a.b.c.com"))
713 self.assertTrue(domain_match("example.local", ".local"))
714 self.assertFalse(domain_match("blah.blah", ""))
[all …]
/external/python/cpython3/Lib/test/
Dtest_http_cookiejar.py14 reach, is_HDN, domain_match, user_domain_match, request_path,
742 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
743 self.assertFalse(domain_match("192.168.1.1", ".168.1.1"))
744 self.assertTrue(domain_match("x.y.com", "x.Y.com"))
745 self.assertTrue(domain_match("x.y.com", ".Y.com"))
746 self.assertFalse(domain_match("x.y.com", "Y.com"))
747 self.assertTrue(domain_match("a.b.c.com", ".c.com"))
748 self.assertFalse(domain_match(".c.com", "a.b.c.com"))
749 self.assertTrue(domain_match("example.local", ".local"))
750 self.assertFalse(domain_match("blah.blah", ""))
[all …]
/external/wpa_supplicant_8/src/eap_peer/
Deap_config.h248 char *domain_match; member
Deap_tls_common.c110 params->domain_match = config->domain_match; in eap_tls_params_from_conf1()
133 params->domain_match = config->domain_match2; in eap_tls_params_from_conf2()
/external/python/cpython2/Lib/
Dcookielib.py528 def domain_match(A, B): function
717 if not domain_match(req_host, reach(request.get_origin_req_host())):
1038 if not domain_match(erhn, domain):
1150 if cookie.version > 0 and not domain_match(erhn, domain):
/external/python/cpython3/Lib/http/
Dcookiejar.py539 def domain_match(A, B): function
726 if not domain_match(req_host, reach(request.origin_req_host)):
1047 if not domain_match(erhn, domain):
1159 if cookie.version > 0 and not domain_match(erhn, domain):
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig_file.c775 STR(domain_match); in wpa_config_write_network()
Dconfig.c2168 { STRe(domain_match) },
2426 os_free(eap->domain_match); in eap_peer_config_free()
DChangeLog267 * add domain_match network profile parameter (similar to