Lines Matching refs:url

140 	char *url, *user = NULL, *pw = NULL;  in osu_get_certificate()  local
163 url = xml_node_get_text(ctx->xml, node); in osu_get_certificate()
164 if (url == NULL) { in osu_get_certificate()
168 wpa_printf(MSG_INFO, "enrollmentServerURI: %s", url); in osu_get_certificate()
169 write_summary(ctx, "enrollmentServerURI: %s", url); in osu_get_certificate()
203 if (est_load_cacerts(ctx, url) < 0 || in osu_get_certificate()
204 est_build_csr(ctx, url) < 0 || in osu_get_certificate()
205 est_simple_enroll(ctx, url, user, pw) < 0) in osu_get_certificate()
210 xml_node_get_text_free(ctx->xml, url); in osu_get_certificate()
308 char *url, *hash; in download_cert() local
320 url = xml_node_get_text(ctx->xml, url_node); in download_cert()
322 if (url == NULL || hash == NULL) { in download_cert()
323 xml_node_get_text_free(ctx->xml, url); in download_cert()
328 wpa_printf(MSG_INFO, "CertURL: %s", url); in download_cert()
339 write_summary(ctx, "Download certificate from %s", url); in download_cert()
342 res = http_download_file(ctx->http, url, TMP_CERT_DL_FILE, NULL); in download_cert()
346 xml_node_get_text_free(ctx->xml, url); in download_cert()
2000 char url[256]; member
2052 res = os_snprintf(last->url, sizeof(last->url), in parse_osu_providers()
2054 if (os_snprintf_error(sizeof(last->url), res)) in parse_osu_providers()
2193 const char *ssid, const char *ssid2, const char *url, in osu_connect() argument
2297 res = cmd_prov(ctx, url); in osu_connect()
2301 res = cmd_oma_dm_prov(ctx, url); in osu_connect()
2435 last->url, in cmd_osu_select()
2460 wpa_printf(MSG_INFO, "URL: %s", last->url); in cmd_osu_select()
2462 ret, last->bssid, last->osu_ssid, last->url); in cmd_osu_select()
2504 ret = cmd_prov(ctx, last->url); in cmd_osu_select()
2508 ret = cmd_oma_dm_prov(ctx, last->url); in cmd_osu_select()
2517 last->url, last->methods, in cmd_osu_select()
2903 static char * get_hostname(const char *url) in get_hostname() argument
2908 if (url == NULL) in get_hostname()
2911 pos = os_strchr(url, '/'); in get_hostname()
2952 !ctx->no_osu_cert_validation, cert->url ? cert->url : "N/A", in osu_cert_cb()
2955 if (ctx->no_osu_cert_validation && cert->url) in osu_cert_cb()
2956 host = get_hostname(cert->url); in osu_cert_cb()