Connect to an FTP server.
#include <ftplib.h> int FtpConnect(const char *host, netbuf **nControl);
FtpConnect() establishes a connection to the FTP server on the specified machine and returns a handle which can be used to initiate data transfers. The host name should be specified as <host> or <host>:<port>. <host> may be either a host name or ip address. <port> may be either a service name or a port number.
If the connection to the remote server if successful, FtpConnect() returns 1. Otherwise, 0 is returned.