diff options
author | nailbuster <david@nailbuster.com> | 2017-10-18 18:59:52 +0200 |
---|---|---|
committer | nailbuster <david@nailbuster.com> | 2017-10-18 18:59:52 +0200 |
commit | 010010f8a1d066a68533e32575370abae16769ae (patch) | |
tree | ed3b9a0a983459e9f77a8e5fb8b56a87e7312d39 /ESP8266FtpServer.h | |
parent | Merge pull request #11 from beegee-tokyo/master (diff) | |
download | FTPCLientServer-010010f8a1d066a68533e32575370abae16769ae.tar FTPCLientServer-010010f8a1d066a68533e32575370abae16769ae.tar.gz FTPCLientServer-010010f8a1d066a68533e32575370abae16769ae.tar.bz2 FTPCLientServer-010010f8a1d066a68533e32575370abae16769ae.tar.lz FTPCLientServer-010010f8a1d066a68533e32575370abae16769ae.tar.xz FTPCLientServer-010010f8a1d066a68533e32575370abae16769ae.tar.zst FTPCLientServer-010010f8a1d066a68533e32575370abae16769ae.zip |
Diffstat (limited to '')
-rw-r--r-- | ESP8266FtpServer.h | 4 |
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 |