ftplib_resume

Restart downloading a remote file.

SYNOPSIS

#include <ftplib.h>
int ftplib_resume(const char *output, const char *path, char mode, netbuf *nbp);

PARAMETERS

output
Specifies the local file to be transfered from the server.
path
Specifies the name of the file on the remote server to download.
mode
The FTP transfer mode as FTPLIB_ASCII or FTPLIB_BINARY.
nbp
A handle to FTP control connection returned by ftplib_connect().

DESCRIPTION

ftplib_resume() will restart downloading the remote file path and save it to local file output.

RETURN VALUE

Returns 1 if successful or 0 otherwise.

$Id: ftplib_resume.html,v 1.1 2002/12/02 03:12:52 te Exp $