ftpfs.h 459 B

123456789101112131415161718192021
  1. /* ftpfs.h */
  2. #if !defined(__FTPFS_H)
  3. #define __FTPFS_H
  4. extern char *ftpfs_anonymous_passwd;
  5. extern char *ftpfs_proxy_host;
  6. extern int ftpfs_directory_timeout;
  7. extern int ftpfs_always_use_proxy;
  8. extern int ftpfs_retry_seconds;
  9. extern int ftpfs_use_passive_connections;
  10. extern int ftpfs_use_unix_list_options;
  11. extern int ftpfs_first_cd_then_ls;
  12. void ftpfs_init_passwd (void);
  13. #define OPT_FLUSH 1
  14. #define OPT_IGNORE_ERROR 2
  15. #endif /* __FTPFS_H */