From 18f630ab21066e14983bae69b357b6b6f8b5c5b1 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Tue, 27 May 2003 06:25:56 +0000
Subject: [PATCH] CURLOPT_HTTPDIGEST is added

---
 include/curl/curl.h | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/include/curl/curl.h b/include/curl/curl.h
index b8b4a63dbc..9de5d84ffb 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -629,6 +629,10 @@ typedef enum {
      attempted before the good old traditional PORT command. */     
   CINIT(FTP_USE_EPRT, LONG, 106),
 
+  /* Set this to a non-zero value to enable HTTP Digest Authentication.
+     You should use this in combination with CURLOPT_USERPWD. */
+  CINIT(HTTPDIGEST, LONG, 107),
+
   CURLOPT_LASTENTRY /* the last unused */
 } CURLoption;
 
@@ -819,8 +823,8 @@ CURLcode curl_global_init(long flags);
 void curl_global_cleanup(void);
 
 /* This is the version number */
-#define LIBCURL_VERSION "7.10.5"
-#define LIBCURL_VERSION_NUM 0x070a05
+#define LIBCURL_VERSION "7.10.6-pre1"
+#define LIBCURL_VERSION_NUM 0x070a06
 
 /* linked-list structure for the CURLOPT_QUOTE option (and other) */
 struct curl_slist {
-- 
GitLab