summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Plasa <dplasa@gmail.com>2020-05-31 11:26:14 +0200
committerDaniel Plasa <dplasa@gmail.com>2020-05-31 11:26:14 +0200
commit5f0852014c0a3d550ca9681e2ffbc9f73906df0b (patch)
treeccccf2fbcec711ddbf3124c19832152f2545d8bb
parentMerge branch 'master' of github.com:dplasa/FTPClientServer (diff)
downloadFTPCLientServer-5f0852014c0a3d550ca9681e2ffbc9f73906df0b.tar
FTPCLientServer-5f0852014c0a3d550ca9681e2ffbc9f73906df0b.tar.gz
FTPCLientServer-5f0852014c0a3d550ca9681e2ffbc9f73906df0b.tar.bz2
FTPCLientServer-5f0852014c0a3d550ca9681e2ffbc9f73906df0b.tar.lz
FTPCLientServer-5f0852014c0a3d550ca9681e2ffbc9f73906df0b.tar.xz
FTPCLientServer-5f0852014c0a3d550ca9681e2ffbc9f73906df0b.tar.zst
FTPCLientServer-5f0852014c0a3d550ca9681e2ffbc9f73906df0b.zip
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7a5b597..72b575a 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,8 @@ The FTP Client is pretty much straight forward. It can upload (put, STOR) a file
when accessing files.
## Limitations
-* Server only allows one ftp control and one data connection at a time. You need to setup Filezilla (or other clients) to respect that, i.e. only allow **1** connection. (In FileZilla go to File/Site Manager then select your site. In Transfer Settings, check "Limit number of simultaneous connections" and set the maximum to 1.)
+* Server only allows **one** ftp control and **one** data connection at a time. You need to setup Filezilla (or other clients) to respect that, i.e. only allow **1** connection. (In FileZilla go to File/Site Manager then select your site. In Transfer Settings, check "Limit number of simultaneous connections" and set the maximum to 1.) This limitation is also the reason why FuseFS using clients (e.g. curlftpfs) seem to work (i.e. listing directories) but will fail on file operations as they try to open a second control connection for that.
+
* It does not yet support encryption
## Compatibility