From c15d4c22061494dc6272cf2eaa8df17846094520 Mon Sep 17 00:00:00 2001 From: Wolfgang Mattis Date: Thu, 4 Aug 2022 16:50:41 +0200 Subject: [PATCH] Updated info of MultiFTPServer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 25f492a..94155ff 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This is a fork of the SimpleFTPServer on github found at https://github.com/xree I extended the code to enable more than one concurrent FTP session. So i.e. it is possible to use WinSCP to edit files and use background transfers (transfer queue). -On default in FtpServerKey.h the define FTP_MAX_SESSIONS is set to 2 for two concurrent FTP connections. +On default in FtpServerKey.h the define FTP_MAX_SESSIONS is set to 2 for two concurrent FTP connections. But you can also use another value by using the 3rd parameter of the FtpServer constructor, which I added in MultiFTPServer (compared to SimpleFTPServer). A single new method added for the MultiFTPServer is getMaxSessions() to get the actual number of concurrently useable FTP sessions. The following text is the original description of the SimpleFTPServer.