http: return curl's AUTHAVAIL via slot_results
commit0972ccd97cc8f913ea828a1e03ef3652fc1ff514
authorJeff King <peff@peff.net>
Thu, 31 Oct 2013 06:35:31 +0000 (31 02:35 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 31 Oct 2013 17:05:55 +0000 (31 10:05 -0700)
tree7f4855620b5553fa21c3e8c302f356e96168ca68
parent02a110ad435a6ccda648f09f94e546dfd7bdd0ac
http: return curl's AUTHAVAIL via slot_results

Callers of the http code may want to know which auth types
were available for the previous request. But after finishing
with the curl slot, they are not supposed to look at the
curl handle again. We already handle returning other
information via the slot_results struct; let's add a flag to
check the available auth.

Note that older versions of curl did not support this, so we
simply return 0 (something like "-1" would be worse, as the
value is a bitflag and we might accidentally set a flag).
This is sufficient for the callers planned in this series,
who only trigger some optional behavior if particular bits
are set, and can live with a fake "no bits" answer.

Signed-off-by: Jeff King <peff@peff.net>
http.c
http.h