########################################################################
Version: FtpLib_V1.0.00
Date: 2008/12/3
########################################################################
The folder "reset" includes two sub-folder: passive & active.
These folder both have a C file.
They are executed to write a struct listed below for testFTP to read.
The major difference between them is the mode of transfer (passive/active).

   struct ftpCnt {
      char host[64];          //host name or IP address
      char user[32];          //user name
      char pass[32];          //password
      unsigned int port;      //port
      int mode;               //transfer mode 
      char destfd[128];       //destination folder
      char destfnm[128];      //destination file name
   };
########################################################################
