|
@@ -17658,8 +17658,6 @@ int httpDownLoadFile(char *location, char *path, char *filename,char *url)
|
|
|
char ftpbuf[200];
|
|
|
int systemresult;
|
|
|
|
|
|
- //DEBUG_INFO("filename=%s\n",filename);
|
|
|
- //DEBUG_INFO("url=%s\n",url);
|
|
|
sprintf(FilePath,"/mnt/%s",filename);
|
|
|
system("ping 8.8.8.8 &");
|
|
|
|
|
@@ -17670,11 +17668,10 @@ int httpDownLoadFile(char *location, char *path, char *filename,char *url)
|
|
|
system(rmFileCmd);
|
|
|
}
|
|
|
memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
|
|
|
- sprintf(ftpbuf, "wget --tries=3 -O /mnt/%s -c %s -T 120",filename, url);
|
|
|
- //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
|
|
|
- systemresult = system(ftpbuf);
|
|
|
+ sprintf(ftpbuf, "wget --tries=3 -O /mnt/%s -c %s -T 120 --no-check-certificate",filename, url);
|
|
|
+ DEBUG_INFO("Download command: %s\n",ftpbuf);
|
|
|
|
|
|
- //DEBUG_INFO("systemresult=%d\n",systemresult);
|
|
|
+ systemresult = system(ftpbuf);
|
|
|
if(systemresult != 0)
|
|
|
{
|
|
|
DEBUG_INFO("http DownLoad error!\n");
|
|
@@ -17692,7 +17689,7 @@ int ftpDownLoadFile(char *location, char *user, char *password, int port, char *
|
|
|
char FilePath[100]={0};
|
|
|
char ftpbuf[200];
|
|
|
int systemresult;
|
|
|
- //char temp[100];
|
|
|
+
|
|
|
sprintf(FilePath,"/mnt/%s",filename);
|
|
|
system("ping 8.8.8.8 &");
|
|
|
|
|
@@ -17706,16 +17703,20 @@ int ftpDownLoadFile(char *location, char *user, char *password, int port, char *
|
|
|
memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
|
|
|
|
|
|
sprintf(ftpbuf, "wget --tries=3 -O /mnt/%s -c %s -T 120",filename, url);
|
|
|
- //sprintf(ftpbuf, "ftpget -u %s -p %s %s -P %d %s %s%s",user,password,IPbuffer,port/*21*/,filename,path,filename); --- remove temporally
|
|
|
- //DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
|
|
|
- //sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
|
|
|
- systemresult = system(ftpbuf);
|
|
|
+ DEBUG_INFO("Download command: %s\n",ftpbuf);
|
|
|
|
|
|
- //DEBUG_INFO("systemresult=%d\n",systemresult);
|
|
|
+ systemresult = system(ftpbuf);
|
|
|
if(systemresult != 0)
|
|
|
{
|
|
|
- DEBUG_WARN("wget error!\n");
|
|
|
- result = FALSE;
|
|
|
+ sprintf(ftpbuf, "wget --tries=3 -O /mnt/%s -c %s -T 120 --no-passive-ftp",filename, url);
|
|
|
+ DEBUG_INFO("Download command: %s\n",ftpbuf);
|
|
|
+
|
|
|
+ systemresult = system(ftpbuf);
|
|
|
+ if(systemresult != 0)
|
|
|
+ {
|
|
|
+ DEBUG_WARN("wget error!\n");
|
|
|
+ result = FALSE;
|
|
|
+ }
|
|
|
}
|
|
|
system("pkill ping");
|
|
|
|