aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-14 14:11:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-14 14:11:11 +0000
commitf8e1fc32de60c5f4c30d20d2bc8c55ac13405752 (patch)
treefac5cfe16bec8ae166e7d77fdfb8b0e0845af7f0 /lib/urldata.h
parent8c6d56f1f971d4804c6fe4618b2ead6aca7319a9 (diff)
Edin Kadribaic's bug report #408488 forced a rearrange of two struct fields
from urldata to connectdata, quite correctly.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 53ff3427e..773d5bfae 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -183,6 +183,8 @@ struct ConnectBits {
bool reuse; /* if set, this is a re-used connection */
bool chunk; /* if set, this is a chunked transfer-encoding */
bool httpproxy; /* if set, this transfer is done through a http proxy */
+ bool user_passwd; /* do we use user+password for this connection? */
+ bool proxy_user_passwd; /* user+password for the proxy? */
};
/*
@@ -391,12 +393,10 @@ struct Configbits {
bool httpproxy;
bool mute;
bool no_body;
- bool proxy_user_passwd;
bool set_port;
bool set_range;
bool upload;
bool use_netrc;
- bool user_passwd;
bool verbose;
bool this_is_a_follow; /* this is a followed Location: request */
bool krb4; /* kerberos4 connection requested */