summaryrefslogtreecommitdiffstats
path: root/libopkg/opkg_download.h
diff options
context:
space:
mode:
Diffstat (limited to 'libopkg/opkg_download.h')
-rw-r--r--libopkg/opkg_download.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libopkg/opkg_download.h b/libopkg/opkg_download.h
index 8b940e7..39cd9a6 100644
--- a/libopkg/opkg_download.h
+++ b/libopkg/opkg_download.h
@@ -21,8 +21,10 @@
#include "opkg_conf.h"
typedef void (*opkg_download_progress_callback)(int percent, char *url);
+typedef int (*curl_progress_func)(void *data, double t, double d, double ultotal, double ulnow);
-int opkg_download(opkg_conf_t *conf, const char *src, const char *dest_file_name);
+
+int opkg_download(opkg_conf_t *conf, const char *src, const char *dest_file_name, curl_progress_func cb, void *data);
int opkg_download_pkg(opkg_conf_t *conf, pkg_t *pkg, const char *dir);
/*
* Downloads file from url, installs in package database, return package name.