summaryrefslogtreecommitdiffstats
path: root/ESP8266FtpServer.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Prevent disconnect before file is fully receivedsandtec652018-07-271-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.
* ESP32 Support Changesnailbuster2017-10-181-19/+19
| | | | A few fixes and support for ESP32
* Added ESP32 supportbeegee-tokyo2017-10-161-3/+100
| | | | Merged @bbx10 transfer speed increase and reduction of blocking (See issue https://github.com/nailbuster/esp8266FTPServer/issues/9)
* initialnailbuster2016-02-041-0/+918