diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-09-21 11:05:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-09-21 11:05:31 +0000 |
commit | 015d5869d7e3daf81548e4d5d55209adfd4285bf (patch) | |
tree | 68ac2015ec29991b3c56ffdb51ecc977c2408437 /lib/http_negotiate.h | |
parent | 4686adb4331b539dacd065bafc82e31a9eca08e8 (diff) | |
download | curl-015d5869d7e3daf81548e4d5d55209adfd4285bf.tar.gz |
Mark Davies fixed Negotiate authentication over proxy, and also introduced
the --proxy-negotiate command line option to allow a user to explicitly
select it.
Diffstat (limited to 'lib/http_negotiate.h')
-rw-r--r-- | lib/http_negotiate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http_negotiate.h b/lib/http_negotiate.h index e0507013f..669fee586 100644 --- a/lib/http_negotiate.h +++ b/lib/http_negotiate.h @@ -27,10 +27,10 @@ #ifdef HAVE_GSSAPI /* this is for Negotiate header input */ -int Curl_input_negotiate(struct connectdata *conn, const char *header); +int Curl_input_negotiate(struct connectdata *conn, bool proxy, const char *header); /* this is for creating Negotiate header output */ -CURLcode Curl_output_negotiate(struct connectdata *conn); +CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy); void Curl_cleanup_negotiate(struct SessionHandle *data); |