c-hyper: make Digest and NTLM work

Test 64, 65, 67, 68, 69, 70, 72

Closes #6390
This commit is contained in:
Daniel Stenberg 2020-12-30 11:58:39 +01:00
Родитель 2855997a95
Коммит 3c7483efb4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -374,6 +374,13 @@ static CURLcode hyperstream(struct Curl_easy *data,
break; break;
} }
/* Curl_http_auth_act() checks what authentication methods that are
* available and decides which one (if any) to use. It will set 'newurl'
* if an auth method was picked. */
result = Curl_http_auth_act(conn);
if(result)
break;
resp_body = hyper_response_body(resp); resp_body = hyper_response_body(resp);
if(!resp_body) { if(!resp_body) {
failf(data, "hyperstream: couldn't get response body"); failf(data, "hyperstream: couldn't get response body");