diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-07-27 22:17:14 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-07-27 22:17:14 +0000 |
commit | 2236ba0d206fe9fef5d93889ee652feaa03fe089 (patch) | |
tree | 2651d5300c11cf99f0abd3d73b9d7ddb14efa748 /lib/cookie.h | |
parent | 463c0f7096f7a0e56929a8e1b4fb3c38e164ce13 (diff) | |
download | curl-2236ba0d206fe9fef5d93889ee652feaa03fe089.tar.gz |
Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a
simple interface to extracting and setting cookies in libcurl's internal
"cookie jar". See the new cookie_interface.c example code.
Diffstat (limited to 'lib/cookie.h')
-rw-r--r-- | lib/cookie.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/cookie.h b/lib/cookie.h index 6f8e8e5fc..aed9f73f7 100644 --- a/lib/cookie.h +++ b/lib/cookie.h @@ -92,4 +92,10 @@ void Curl_cookie_freelist(struct Cookie *); void Curl_cookie_cleanup(struct CookieInfo *); int Curl_cookie_output(struct CookieInfo *, char *); +#if defined(CURL_DISABLE_HTTP) || defined(CURL_DISABLE_COOKIES) +#define Curl_cookie_list(x) NULL +#else +struct curl_slist *Curl_cookie_list(struct SessionHandle *data); +#endif + #endif |