[pacman-dev] [PATCH 1/2] Documented _alpm_download()

Kerrick Staley mail at kerrickstaley.com
Sun Jun 19 00:24:05 EDT 2011


Documented the _alpm_download() function in dload.c

Signed-off-by: Kerrick Staley <mail at kerrickstaley.com>
---
 lib/libalpm/dload.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c
index 9354562..33fb1cb 100644
--- a/lib/libalpm/dload.c
+++ b/lib/libalpm/dload.c
@@ -311,6 +311,16 @@ cleanup:
 }
 #endif
 
+/** Download a file given by a URL to a local directory.
+ * Does not overwrite an existing file if the download fails.
+ * @param handle the context handle
+ * @param url the file's URL
+ * @param localpath the directory to save the file in
+ * @param force force download even if there is an up-to-date local copy
+ * @param allow_resume allow a partial download to be resumed
+ * @param errors_ok do not log errors (but still return them)
+ * @return 0 on success, -1 on error (pm_errno is set accordingly if errors_ok == 0)
+ */
 int _alpm_download(pmhandle_t *handle, const char *url, const char *localpath,
 		int force, int allow_resume, int errors_ok)
 {
-- 
1.7.5.2



More information about the pacman-dev mailing list