diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-04 15:02:42 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-04 15:02:42 +0000 |
commit | 41ae97e710f728495a1d6adba6476c21b94c4881 (patch) | |
tree | a7805b39c4d531e8f4b36351d2fed66700c95e2b /lib/share.h | |
parent | f72ba7f79d3eb261f922d24072409ee300402059 (diff) | |
download | curl-41ae97e710f728495a1d6adba6476c21b94c4881.tar.gz |
Dirk Manske's patch that introduces cookie support to the share interface.
Diffstat (limited to 'lib/share.h')
-rw-r--r-- | lib/share.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/share.h b/lib/share.h index 76e6244d7..45844e495 100644 --- a/lib/share.h +++ b/lib/share.h @@ -26,6 +26,7 @@ #include "setup.h" #include <curl/curl.h> +#include "cookie.h" /* this struct is libcurl-private, don't export details */ struct Curl_share { @@ -37,6 +38,7 @@ struct Curl_share { void *clientdata; curl_hash *hostcache; + struct CookieInfo *cookies; }; CURLSHcode Curl_share_lock ( |