aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-10-17 07:05:26 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-10-17 07:05:26 +0000
commit260c353577148c74b6b61c8222ab63c72a5ec820 (patch)
tree4c33e3ae1d274e10fdec6a285c58c27ed59e9194
parent8823679e70b14332baff04d95ffd57fe54e5181d (diff)
show info text (verbose) about auth type and user name in use
-rw-r--r--lib/http.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/http.c b/lib/http.c
index 041d6f944..217103c50 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -193,6 +193,7 @@ CURLcode http_auth_headers(struct connectdata *conn,
{
CURLcode result = CURLE_OK;
struct SessionHandle *data = conn->data;
+ char *auth=NULL;
*ready = FALSE; /* default is no */
@@ -218,6 +219,7 @@ CURLcode http_auth_headers(struct connectdata *conn,
if (data->state.authstage == 407) {
#ifdef USE_SSLEAY
if(data->state.authwant == CURLAUTH_NTLM) {
+ auth=(char *)"NTLM";
result = Curl_output_ntlm(conn, TRUE, ready);
if(result)
return result;
@@ -227,6 +229,7 @@ CURLcode http_auth_headers(struct connectdata *conn,
if((data->state.authwant == CURLAUTH_BASIC) && /* Basic */
conn->bits.proxy_user_passwd &&
!checkheaders(data, "Proxy-authorization:")) {
+ auth=(char *)"Basic";
result = Curl_output_basic_proxy(conn);
if(result)
return result;
@@ -234,13 +237,17 @@ CURLcode http_auth_headers(struct connectdata *conn,
/* Switch to web authentication after proxy authentication is done */
Curl_http_auth_stage(data, 401);
}
+ infof(data, "Proxy auth using %s with user '%s'\n",
+ auth, conn->proxyuser);
}
/* Send web authentication header if needed */
if (data->state.authstage == 401) {
+ auth = NULL;
#ifdef HAVE_GSSAPI
if((data->state.authwant == CURLAUTH_GSSNEGOTIATE) &&
data->state.negotiate.context &&
!GSS_ERROR(data->state.negotiate.status)) {
+ auth="GSS-Negotiate";
result = Curl_output_negotiate(conn);
if (result)
return result;
@@ -250,6 +257,7 @@ CURLcode http_auth_headers(struct connectdata *conn,
#endif
#ifdef USE_SSLEAY
if(data->state.authwant == CURLAUTH_NTLM) {
+ auth=(char *)"NTLM";
result = Curl_output_ntlm(conn, FALSE, ready);
if(result)
return result;
@@ -259,6 +267,7 @@ CURLcode http_auth_headers(struct connectdata *conn,
{
if((data->state.authwant == CURLAUTH_DIGEST) &&
data->state.digest.nonce) {
+ auth=(char *)"Digest";
result = Curl_output_digest(conn,
(unsigned char *)request,
(unsigned char *)path);
@@ -269,12 +278,16 @@ CURLcode http_auth_headers(struct connectdata *conn,
else if((data->state.authwant == CURLAUTH_BASIC) && /* Basic */
conn->bits.user_passwd &&
!checkheaders(data, "Authorization:")) {
+ auth=(char *)"Basic";
result = Curl_output_basic(conn);
if(result)
return result;
*ready = TRUE;
}
}
+ if(auth)
+ infof(data, "Server auth using %s with user '%s'\n",
+ auth, conn->user);
}
}
else