aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index efd73b2cf..31a755355 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -152,6 +152,13 @@ struct curl_ssl_session {
struct ssl_config_data ssl_config; /* setup for this session */
};
+/* Struct used for Digest challenge-response authentication */
+struct digestdata {
+ char *nonce;
+ char *cnonce;
+ char *realm;
+ int algo;
+};
/****************************************************************************
* HTTP unique setup
@@ -327,7 +334,6 @@ struct Curl_transfer_keeper {
and we're uploading the last chunk */
};
-
/*
* The connectdata struct contains all fields and variables that should be
* unique for an entire connection.
@@ -619,6 +625,8 @@ struct UrlState {
#endif
bool allow_port; /* Is set.use_port allowed to take effect or not. This
is always set TRUE when curl_easy_perform() is called. */
+
+ struct digestdata digest;
};