Merge branch '1858_segfault_in_search'
[midnight-commander.git] / vfs / ftpfs.h
blob0f41b18f7f05403b322c934720bb6984f0a7f180
2 /**
3 * \file
4 * \brief Header: Virtual File System: FTP file system
5 */
7 #ifndef MC_VFS_FTPFS_H
8 #define MC_VFS_FTPFS_H
10 extern char *ftpfs_anonymous_passwd;
11 extern char *ftpfs_proxy_host;
12 extern int ftpfs_directory_timeout;
13 extern int ftpfs_always_use_proxy;
15 extern int ftpfs_retry_seconds;
16 extern int ftpfs_use_passive_connections;
17 extern int ftpfs_use_passive_connections_over_proxy;
18 extern int ftpfs_use_unix_list_options;
19 extern int ftpfs_first_cd_then_ls;
21 void ftpfs_init_passwd (void);
22 void init_ftpfs (void);
24 #define FTP_INET 1
25 #define FTP_INET6 2
27 #define OPT_FLUSH 1
28 #define OPT_IGNORE_ERROR 2
30 #endif