index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2008-01-22 22:00:12 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-02-24 20:21:58 -0600 |
commit | 81a2a06818d367f8528c74311171417beb9e1592 (patch) | |
tree | 62f21bce671e41feae2a453bc36561c8cbf4449a /lib/libalpm/dload.h | |
parent | 3e8ae774bdbc8572613a22988476b6b4e7ef91fd (diff) |
-rw-r--r-- | lib/libalpm/dload.h | 11 |
diff --git a/lib/libalpm/dload.h b/lib/libalpm/dload.h index 8ea97a26..01ec0ba0 100644 --- a/lib/libalpm/dload.h +++ b/lib/libalpm/dload.h @@ -27,11 +27,12 @@ #define PM_DLBUF_LEN (1024 * 10) -int _alpm_downloadfiles(alpm_list_t *servers, const char *localpath, - alpm_list_t *files, int *dl_total, unsigned long totalsize); -int _alpm_downloadfiles_forreal(alpm_list_t *servers, const char *localpath, - alpm_list_t *files, time_t mtime1, time_t *mtime2, int *dl_total, - unsigned long totalsize); +int _alpm_download_single_file(const char *filename, + alpm_list_t *servers, const char *localpath, + time_t mtimeold, time_t *mtimenew); + +int _alpm_download_files(alpm_list_t *files, + alpm_list_t *servers, const char *localpath); #endif /* _ALPM_DLOAD_H */ |