Lines Matching defs:host
456 {OPT_MORE_STR, 0, 0, "this implies host name validation"},
458 "Address to be checked (rather than -server) during TLS host name validation"},
720 /* set expected host name/IP addr and clears the email addr in the given ts */
721 static int truststore_set_host_etc(X509_STORE *ts, const char *host)
725 /* first clear any host names, IP, and email addresses */
733 return (host != NULL && X509_VERIFY_PARAM_set1_ip_asc(ts_vpm, host))
734 || X509_VERIFY_PARAM_set1_host(ts_vpm, host, 0);
1205 * the 0 arg below clears any expected host/ip/email address;
1252 static SSL_CTX *setup_ssl_ctx(OSSL_CMP_CTX *ctx, const char *host,
1384 opt_tls_host != NULL ? opt_tls_host : host))
1848 char *host = NULL, *port = NULL, *path = NULL, *used_path = opt_path;
1880 if (!OSSL_HTTP_parse_url(opt_server, &ssl, NULL /* user */, &host, &port,
1893 if (!OSSL_CMP_CTX_set1_server(ctx, host)
1901 opt_tls_used ? "s" : "", host, port,
1904 proxy_host = OSSL_HTTP_adapt_proxy(opt_proxy, opt_no_proxy, host, ssl);
1974 info->ssl_ctx = setup_ssl_ctx(ctx, host, engine);
1975 info->server = host;
1976 host = NULL; /* prevent deallocation */
2014 OPENSSL_free(host);