summaryrefslogtreecommitdiffstats
path: root/ESP8266FtpServer.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-05-24rewrite/reworks to also use LittleFS since SPIFFS has become deprecatedDaniel Plasa1-1021/+0
Also modifications to support also active mode and performance tunings with the use of dynamic buffers when transfering file data.
2018-07-27Prevent disconnect before file is fully receivedsandtec651-6/+12
In the doStore function, the data.available return value may be less than the complete file size, if all tcp packets have not been received when the call is made. The problem is then that closeTransfer() will be called regardless, i.e. before the entire file is received, and the transfer will be interrupted. The code changes will allow additional doStore() iterations before closeTransfer is called. Tested OK on both ESP32 and ESP8266. Note: on ESP32, use arduino lib newer than 10 july, 2018.
2017-10-18ESP32 Support Changesnailbuster1-19/+19
A few fixes and support for ESP32
2017-10-16Added ESP32 supportbeegee-tokyo1-3/+100
Merged @bbx10 transfer speed increase and reduction of blocking (See issue https://github.com/nailbuster/esp8266FTPServer/issues/9)
2016-02-04initialnailbuster1-0/+918