diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-30 06:40:01 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-30 06:40:01 +0000 |
commit | 8e92600ddd6ed324fc1f8410e859cca3182018f7 (patch) | |
tree | 5795ba2eb237e16bcfb0513e8b46c7aee1492e2e /lib/http.h | |
parent | 5e75c310ba0b74ad9dd075710d55bcb1fd58aadb (diff) | |
download | curl-8e92600ddd6ed324fc1f8410e859cca3182018f7.tar.gz |
David Byron made CURLOPT_FAILONERROR work with authentications such as NTLM
or Digest.
Diffstat (limited to 'lib/http.h')
-rw-r--r-- | lib/http.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/http.h b/lib/http.h index ad7179ff9..5dff8cb71 100644 --- a/lib/http.h +++ b/lib/http.h @@ -42,9 +42,13 @@ CURLcode Curl_http_connect(struct connectdata *conn); void Curl_httpchunk_init(struct connectdata *conn); CHUNKcode Curl_httpchunk_read(struct connectdata *conn, char *datap, ssize_t length, ssize_t *wrote); + +/* These functions are in http.c */ void Curl_http_auth_stage(struct SessionHandle *data, int stage); CURLcode Curl_http_auth(struct connectdata *conn, int httpcode, char *header); void Curl_http_auth_act(struct connectdata *conn); + +int Curl_http_should_fail(struct connectdata *conn); #endif #endif |