X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=blobdiff_plain;f=ipkg_download.c;h=192c8b3271c5fe120f5405e9665a44dd52dd321b;hp=6369008520ab656607125c61f368fec9205d8f7f;hb=eef75353e6b3cef736cce9f2199450b5c936d2a4;hpb=d78a1ab67d0262d09cdcc34844cc3d96af737165 diff --git a/ipkg_download.c b/ipkg_download.c index 6369008..192c8b3 100644 --- a/ipkg_download.c +++ b/ipkg_download.c @@ -1,3 +1,4 @@ +/* vi: set noexpandtab sw=4 sts=4: */ /* ipkg_download.c - the itsy package management system Carl D. Worth @@ -15,6 +16,8 @@ General Public License for more details. */ +#include + #include "ipkg.h" #include "ipkg_download.h" #include "ipkg_message.h" @@ -69,6 +72,7 @@ int ipkg_download(ipkg_conf_t *conf, const char *src, const char *dest_file_name } /* XXX: BUG rewrite to use execvp or else busybox's internal wget -Jamey 7/23/2002 */ +#if 0 sprintf_alloc(&cmd, "wget --passive-ftp %s %s%s %s%s %s -P %s %s", (conf->http_proxy || conf->ftp_proxy) ? "--proxy=on" : "", conf->proxy_user ? "--proxy-user=" : "", @@ -91,6 +95,23 @@ int ipkg_download(ipkg_conf_t *conf, const char *src, const char *dest_file_name return EINVAL; } free(cmd); +#endif + CURL *curl; + CURLcode res; + FILE * file = fopen (tmp_file_location, "w"); + + curl = curl_easy_init (); + if (curl) + { + curl_easy_setopt (curl, CURLOPT_URL, src); + curl_easy_setopt (curl, CURLOPT_WRITEDATA, file); + res = curl_easy_perform (curl); + curl_easy_cleanup (curl); + fclose (file); + + } + else + return -1; err = file_move(tmp_file_location, dest_file_name);