Searched refs:auth_header (Results 1 – 1 of 1) sorted by relevance
106 char *auth_header; member229 http_utils_assign_string(&client->auth_header, at, length); in http_on_header_value()722 free(client->auth_header); in esp_http_client_cleanup()1380 char *auth_header = client->auth_header; in esp_http_client_add_auth() local1381 if (auth_header) { in esp_http_client_add_auth()1382 http_utils_trim_whitespace(&auth_header); in esp_http_client_add_auth()1383 ESP_LOGD(TAG, "UNAUTHORIZED: %s", auth_header); in esp_http_client_add_auth()1385 if (http_utils_str_starts_with(auth_header, "Digest") == 0) { in esp_http_client_add_auth()1389 } else if (http_utils_str_starts_with(auth_header, "Basic") == 0) { in esp_http_client_add_auth()1395 ESP_LOGE(TAG, "This authentication method is not supported: %s", auth_header); in esp_http_client_add_auth()[all …]