update to 0.9.1 release tarball
tarball from: <https://sourceforge.net/projects/curlftpfs/files/curlftpfs/0.9.2/curlftpfs-0.9.2.tar.gz>
This commit is contained in:
@@ -112,6 +112,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
|
@@ -1,4 +1,4 @@
|
||||
.TH curlftpfs 1 "12 Apr 2006" "CurlFtpFS 0.6.1" "CurlFtpFS Manual"
|
||||
.TH curlftpfs 1 "25 May 2007" "CurlFtpFS 0.9.2" "CurlFtpFS Manual"
|
||||
.SH NAME
|
||||
curlftpfs \- mount a ftp host as a local directory
|
||||
.SH SYNOPSIS
|
||||
@@ -80,6 +80,10 @@ Maximum time in seconds that you allow the connection to the server to take.
|
||||
This only limits the connection phase, once curlftpfs has connected this option
|
||||
is of no more use.
|
||||
.TP
|
||||
.B custom_list=<command>
|
||||
Command used by curlftpfs to list files. The default is "LIST -a" but some
|
||||
servers might require extra options, e.g. "LIST -la".
|
||||
.TP
|
||||
.B disable_eprt
|
||||
Tell curlftpfs to disable the use of the EPRT and LPRT commands when doing
|
||||
active FTP transfers. Curlftpfs will normally always first attempt to use EPRT,
|
||||
@@ -90,8 +94,11 @@ traditional PORT command.
|
||||
.TP
|
||||
.B disable_epsv
|
||||
Tell curlftpfs to disable the use of the EPSV command when doing passive FTP
|
||||
transfers. Curlftpfs will normally always first attempt to use EPSV before
|
||||
PASV, but with this option, it will not try using EPSV.
|
||||
transfers. This is the default.
|
||||
.TP
|
||||
.B enable_epsv
|
||||
Tell curlftpfs to enable the use of the EPSV command when doing passive FTP
|
||||
transfers. Curlftpfs will first attempt to use EPSV before PASV.
|
||||
.TP
|
||||
.B engine=<name>
|
||||
Select the OpenSSL crypto engine to use for cipher operations. Use:
|
||||
@@ -107,6 +114,19 @@ the
|
||||
.B \-d
|
||||
option.
|
||||
.TP
|
||||
.B ftp_method=<method>
|
||||
Control what method curlftpfs should use to reach a file on the
|
||||
server. The method argument should be one of the following alternatives:
|
||||
.RS
|
||||
.IP multicwd
|
||||
curlftpfs does a single CWD operation for each path part in the given URL. For
|
||||
deep hierarchies this means very many commands. This is how RFC1738 says it
|
||||
should be done. This is the default but the slowest behavior.
|
||||
.IP singlecwd
|
||||
curlftpfs does one CWD with the full target directory and then operates on the
|
||||
file \&"normally" (like in the multicwd case).
|
||||
.RE
|
||||
.TP
|
||||
.B ftp_port=<address>
|
||||
Reverses the initiator/listener roles when connecting with ftp. This
|
||||
switch makes curlftpfs use the PORT command instead of PASV. In practice, PORT
|
||||
|
Reference in New Issue
Block a user