Merge branch 'bc/http-100-continue'

Issue "100 Continue" responses to help use of GSS-Negotiate
authentication scheme over HTTP transport when needed.

* bc/http-100-continue:
  remote-curl: fix large pushes with GSSAPI
  remote-curl: pass curl slot_results back through run_slot
  http: return curl's AUTHAVAIL via slot_results
This commit is contained in:
Junio C Hamano
2013-12-05 12:58:58 -08:00
3 changed files with 28 additions and 10 deletions

1
http.h
View File

@ -54,6 +54,7 @@
struct slot_results {
CURLcode curl_result;
long http_code;
long auth_avail;
};
struct active_request_slot {