| 12345678910111213141516171819202122232425262728293031323334353637383940 | 
							- //---------------------------------------------------------------------------
 
- #ifndef FzApiStructuresH
 
- #define FzApiStructuresH
 
- //---------------------------------------------------------------------------
 
- #include <openssl/pkcs12.h>
 
- //---------------------------------------------------------------------------
 
- class t_server
 
- {
 
- public:
 
-   t_server();
 
-   ~t_server() {}
 
-   CString host;
 
-   int port;
 
-   CString user, pass, account;
 
-   CString path;
 
-   int nServerType;
 
-   int nPasv;
 
-   int nTimeZoneOffset;
 
-   int nUTF8;
 
-   int iForcePasvIp;
 
-   int iUseMlsd;
 
-   X509 * Certificate;
 
-   EVP_PKEY * PrivateKey;
 
- };
 
- //---------------------------------------------------------------------------
 
- #include "ServerPath.h"
 
- //---------------------------------------------------------------------------
 
- typedef struct
 
- {
 
-     CString localfile;
 
-     CString remotefile;
 
-     CServerPath remotepath;
 
-     BOOL get;
 
-     __int64 size;
 
-     t_server server;
 
-     int nType;
 
-     int nUserData;
 
- } t_transferfile;
 
- //---------------------------------------------------------------------------
 
- #endif // FzApiStructuresH
 
 
  |