aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-05 17:04:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-05 17:04:39 +0000
commit108cb14d1f01deb5e5704c70c0feb8e2fd8d2175 (patch)
tree0e0f8893ce1b7cab404e0ef8e8024a6acfb8ed28 /lib/urldata.h
parentb98308b524fd5202e76077de5b1bd3202671acab (diff)
Make SessionHandle keep record if it is used with the multi interface or
the easy interface, it CANNOT be used by a mixture.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index cb0e3dec9..57ac15529 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -488,6 +488,12 @@ typedef enum {
#define MAX_CURL_PASSWORD_LENGTH 256
struct UrlState {
+ enum {
+ Curl_if_none,
+ Curl_if_easy,
+ Curl_if_multi
+ } used_interface;
+
/* buffers to store authentication data in, as parsed from input options */
char user[MAX_CURL_USER_LENGTH];
char passwd[MAX_CURL_PASSWORD_LENGTH];