aboutsummaryrefslogtreecommitdiff
path: root/include/curl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-07 09:58:13 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-07 09:58:13 +0000
commit980a47b42b95d7b9ff3378dc7b0f2e1c453fb649 (patch)
tree291d230a24b99e8ef0c81e59380b640d484229d7 /include/curl
parentf7ca561b06d34b230040bdaa3baa9c37596e7d84 (diff)
support for ingoring session cookies added
Diffstat (limited to 'include/curl')
-rw-r--r--include/curl/curl.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 2d52fb1eb..df4f093b1 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -537,10 +537,18 @@ typedef enum {
/* set the data for the debug function */
CINIT(DEBUGDATA, OBJECTPOINT, 95),
+
+ /* mark this as start of a cookie session */
+ CINIT(COOKIESESSION, LONG, 96),
CURLOPT_LASTENTRY /* the last unusued */
} CURLoption;
+ /* two convenient "aliases" that follow the name scheme better */
+#define CURLOPT_WRITEDATA CURLOPT_FILE
+#define CURLOPT_READDATA CURLOPT_INFILE
+
+
/* These enums are for use with the CURLOPT_HTTP_VERSION option. */
enum {
CURL_HTTP_VERSION_NONE, /* setting this means we don't care, and that we'd
@@ -676,8 +684,8 @@ CURLcode curl_global_init(long flags);
void curl_global_cleanup(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.9.6"
-#define LIBCURL_VERSION_NUM 0x070906
+#define LIBCURL_VERSION "7.9.7-pre1"
+#define LIBCURL_VERSION_NUM 0x070907
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
struct curl_slist {