diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-07-22 09:58:57 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-22 09:58:57 +0000 |
commit | fb731eb3e749d5a69bc61c827b902f1afea90f9e (patch) | |
tree | b75bbe747eb37bb0c207af0ed2b790437c6ba73f /lib/http_ntlm.h | |
parent | 6f2a4d290fd0ebe3bf5bed7bb11fd0891323cec9 (diff) | |
download | curl-fb731eb3e749d5a69bc61c827b902f1afea90f9e.tar.gz |
The NTLM functions now take a 'proxy' argument as well.
Diffstat (limited to 'lib/http_ntlm.h')
-rw-r--r-- | lib/http_ntlm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_ntlm.h b/lib/http_ntlm.h index c1408525a..88a248ccd 100644 --- a/lib/http_ntlm.h +++ b/lib/http_ntlm.h @@ -33,7 +33,7 @@ typedef enum { } CURLntlm; /* this is for ntlm header input */ -CURLntlm Curl_input_ntlm(struct connectdata *conn, char *header); +CURLntlm Curl_input_ntlm(struct connectdata *conn, bool proxy, char *header); /* this is for creating ntlm header output */ CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy); |