2009-02-07 15:54:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief Header: Virtual File System: FTP file system
|
|
|
|
*/
|
|
|
|
|
2005-02-19 00:15:37 +03:00
|
|
|
#ifndef MC_VFS_FTPFS_H
|
|
|
|
#define MC_VFS_FTPFS_H
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
extern char *ftpfs_anonymous_passwd;
|
|
|
|
extern char *ftpfs_proxy_host;
|
1998-04-17 04:59:58 +04:00
|
|
|
extern int ftpfs_directory_timeout;
|
|
|
|
extern int ftpfs_always_use_proxy;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2001-06-01 21:46:57 +04:00
|
|
|
extern int ftpfs_retry_seconds;
|
|
|
|
extern int ftpfs_use_passive_connections;
|
2005-05-29 16:10:08 +04:00
|
|
|
extern int ftpfs_use_passive_connections_over_proxy;
|
2001-06-01 21:46:57 +04:00
|
|
|
extern int ftpfs_use_unix_list_options;
|
|
|
|
extern int ftpfs_first_cd_then_ls;
|
|
|
|
|
1999-12-08 14:39:14 +03:00
|
|
|
void ftpfs_init_passwd (void);
|
2004-08-17 13:17:43 +04:00
|
|
|
void init_ftpfs (void);
|
1999-12-08 14:39:14 +03:00
|
|
|
|
|
|
|
#define OPT_FLUSH 1
|
|
|
|
#define OPT_IGNORE_ERROR 2
|
|
|
|
|
2005-02-19 00:15:37 +03:00
|
|
|
#endif
|