diff options
author | Dan McGee <dan@archlinux.org> | 2011-03-17 01:25:35 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-17 01:25:35 +0100 |
commit | cff36093f3b778b3bda9c9d1a3acf24e36dd9f73 (patch) | |
tree | 2095bf581d9c12d5b0a61796359a5b40928f3630 /lib/libalpm/handle.h | |
parent | 92630c660710332d0e02dea5a3c06c48f75d7321 (diff) | |
parent | f2eac18a6ec62db3ec53744064e05416024c1b30 (diff) | |
download | pacman-cff36093f3b778b3bda9c9d1a3acf24e36dd9f73.tar.gz pacman-cff36093f3b778b3bda9c9d1a3acf24e36dd9f73.tar.xz |
Merge branch 'download'
Diffstat (limited to 'lib/libalpm/handle.h')
-rw-r--r-- | lib/libalpm/handle.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/libalpm/handle.h b/lib/libalpm/handle.h index 2d962fe6..de2dfa1a 100644 --- a/lib/libalpm/handle.h +++ b/lib/libalpm/handle.h @@ -29,6 +29,10 @@ #include "alpm.h" #include "trans.h" +#ifdef HAVE_LIBCURL +#include <curl/curl.h> +#endif + typedef struct _pmhandle_t { /* internal usage */ pmdb_t *db_local; /* local db pointer */ @@ -37,6 +41,12 @@ typedef struct _pmhandle_t { FILE *lckstream; /* lock file stream pointer if one exists */ pmtrans_t *trans; +#ifdef HAVE_LIBCURL + /* libcurl handle */ + CURL *curl; /* reusable curl_easy handle */ + CURLcode curlerr; /* last error produced by curl */ +#endif + /* callback functions */ alpm_cb_log logcb; /* Log callback function */ alpm_cb_download dlcb; /* Download callback function */ |