diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-05 17:08:21 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-13 08:17:09 +0200 |
commit | 7c70a3b1ad5e156243199642c9c0abf34f9f1d8e (patch) | |
tree | c2ce8bac26eeac9020a9a004c41a33cc7a541606 /lib/http.c | |
parent | bf7303966e4add9e4855323046bd432ba6d61517 (diff) | |
download | curl-7c70a3b1ad5e156243199642c9c0abf34f9f1d8e.tar.gz |
http: CURL_DISABLE_HTTP_AUTH
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/http.c b/lib/http.c index b182844ff..b09dc648a 100644 --- a/lib/http.c +++ b/lib/http.c @@ -257,6 +257,7 @@ char *Curl_copy_header_value(const char *header) return value; } +#ifndef CURL_DISABLE_HTTP_AUTH /* * http_output_basic() sets up an Authorization: header (or the proxy version) * for HTTP Basic authentication. @@ -338,6 +339,8 @@ static CURLcode http_output_bearer(struct connectdata *conn) return result; } +#endif + /* pickoneauth() selects the most favourable authentication method from the * ones available and the ones we want. * @@ -611,6 +614,7 @@ CURLcode Curl_http_auth_act(struct connectdata *conn) return result; } +#ifndef CURL_DISABLE_HTTP_AUTH /* * Output the correct authentication header depending on the auth type * and whether or not it is to a proxy. @@ -799,6 +803,22 @@ Curl_http_output_auth(struct connectdata *conn, return result; } +#else +/* when disabled */ +CURLcode +Curl_http_output_auth(struct connectdata *conn, + const char *request, + const char *path, + bool proxytunnel) +{ + (void)conn; + (void)request; + (void)path; + (void)proxytunnel; + return CURLE_OK; +} +#endif + /* * Curl_http_input_auth() deals with Proxy-Authenticate: and WWW-Authenticate: * headers. They are dealt with both in the transfer.c main loop and in the |