summaryrefslogtreecommitdiffstats
path: root/ESP8266FtpServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'ESP8266FtpServer.h')
-rw-r--r--ESP8266FtpServer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ESP8266FtpServer.h b/ESP8266FtpServer.h
index 877ad24..00a8057 100644
--- a/ESP8266FtpServer.h
+++ b/ESP8266FtpServer.h
@@ -35,7 +35,7 @@
#include <FS.h>
#include <WiFiClient.h>
-#define FTP_SERVER_VERSION "FTP-2016-01-14"
+#define FTP_SERVER_VERSION "FTP-2017-10-18"
#define FTP_CTRL_PORT 21 // Command port on wich server is listening
#define FTP_DATA_PORT_PASV 50009 // Data port in passive mode
@@ -44,7 +44,7 @@
#define FTP_CMD_SIZE 255 + 8 // max size of a command
#define FTP_CWD_SIZE 255 + 8 // max size of a directory name
#define FTP_FIL_SIZE 255 // max size of a file name
-// #define FTP_BUF_SIZE 1024 //512 // size of file buffer for read/write
+//#define FTP_BUF_SIZE 1024 //512 // size of file buffer for read/write
#define FTP_BUF_SIZE 2*1460 //512 // size of file buffer for read/write
class FtpServer