ftpfs.h 508 B

123456789101112131415161718192021
  1. #ifndef MC_VFS_FTPFS_H
  2. #define MC_VFS_FTPFS_H
  3. extern char *ftpfs_anonymous_passwd;
  4. extern char *ftpfs_proxy_host;
  5. extern int ftpfs_directory_timeout;
  6. extern int ftpfs_always_use_proxy;
  7. extern int ftpfs_retry_seconds;
  8. extern int ftpfs_use_passive_connections;
  9. extern int ftpfs_use_passive_connections_over_proxy;
  10. extern int ftpfs_use_unix_list_options;
  11. extern int ftpfs_first_cd_then_ls;
  12. void ftpfs_init_passwd (void);
  13. void init_ftpfs (void);
  14. #define OPT_FLUSH 1
  15. #define OPT_IGNORE_ERROR 2
  16. #endif