mirror of
https://github.com/curl/curl.git
synced 2026-08-12 12:50:53 +03:00
Daniel Kouril's patch that adds HTTP negotiation support to libcurl was
added.
This commit is contained in:
parent
696843c020
commit
e56ae1426c
14 changed files with 425 additions and 6 deletions
|
|
@ -688,6 +688,14 @@ CURLcode Curl_http(struct connectdata *conn)
|
|||
conn->allocptr.uagent=NULL;
|
||||
}
|
||||
|
||||
#ifdef GSSAPI
|
||||
if (data->state.negotiate.context &&
|
||||
!GSS_ERROR(data->state.negotiate.status)) {
|
||||
result = Curl_output_negotiate(conn);
|
||||
if (result)
|
||||
return result;
|
||||
} else
|
||||
#endif
|
||||
if(data->state.digest.nonce) {
|
||||
result = Curl_output_digest(conn,
|
||||
(unsigned char *)request,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue