9f8a619082
* NEW: FtpClient.NoEPSV is a new property that prevents the use of EPSV. In other words, the FtpClient will always use PASV. git-svn-id: svn://localhost/gambas/trunk@5870 867c0c6c-44f3-4631-809d-bfa615b0a4ec
56 lines
1.4 KiB
C
56 lines
1.4 KiB
C
/***************************************************************************
|
|
|
|
CFtpClient.h
|
|
|
|
(c) 2003-2008 Daniel Campos Fernández <dcamposf@gmail.com>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __CFTPCLIENT_H
|
|
#define __CFTPCLIENT_H
|
|
|
|
#include "gambas.h"
|
|
#include "gbcurl.h"
|
|
#include "CCurl.h"
|
|
#include "CProxy.h"
|
|
#include <curl/curl.h>
|
|
#include <curl/easy.h>
|
|
|
|
#ifndef __CFTPCLIENT_C
|
|
|
|
|
|
extern GB_DESC CFtpClientDesc[];
|
|
extern GB_STREAM_DESC FtpStream;
|
|
|
|
#else
|
|
|
|
#define THIS_FTP ((CFTPCLIENT *)_object)
|
|
|
|
#endif
|
|
|
|
typedef
|
|
struct {
|
|
CCURL curl;
|
|
GB_ARRAY commands;
|
|
unsigned no_epsv : 1;
|
|
}
|
|
CFTPCLIENT;
|
|
|
|
#define FTP_PROPERTIES "URL=127.0.0.1:21,Async=True,Timeout=0,User,Password"
|
|
|
|
#endif
|