aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-05-29 23:07:22 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-05-29 23:07:22 +0000
commit6d522c9c1dae070f73aae1022b09b68f9153959e (patch)
treee8d3b26169fb00fff416efd01a353a5b079e908a /lib/urldata.h
parent45885f30c2753c66cff34f2e80ac26dcc8cfae75 (diff)
made getenv() more threadsafe for win32
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 9960f6e70..5af199c2e 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -240,26 +240,27 @@ struct FTP {
struct Configbits {
bool ftp_append;
bool ftp_ascii;
- bool http_post;
- bool http_set_referer;
+ bool ftp_list_only;
+ bool ftp_use_port;
+ bool hide_progress;
bool http_fail_on_error;
+ bool http_follow_location;
bool http_formpost;
bool http_include_header;
- bool http_follow_location;
+ bool http_post;
bool http_put;
+ bool http_set_referer;
+ bool httpproxy;
+ bool mute;
bool no_body;
- bool ftp_list_only;
- bool use_netrc;
- bool ftp_use_port;
+ bool proxy_user_passwd;
+ bool proxystringalloc; /* the http proxy string is malloc()'ed */
bool set_port;
bool set_range;
- bool mute;
- bool hide_progress;
bool upload;
+ bool use_netrc;
bool user_passwd;
- bool proxy_user_passwd;
bool verbose;
- bool httpproxy;
};
typedef size_t (*progress_callback)(void *clientp,