summaryrefslogtreecommitdiffstats
path: root/FTPClient.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix building for esp32 core 2.0.8Emil Muratov2023-05-021-1/+1
| | | | __FlashStringHelper class is abstract, so use String& instead
* Correct client upload in blocking modenorbim12020-10-291-2/+2
| | | Client upload with TransferType=FTP_PUT cleared the local file content. It first opened the file in write mode, because (direction & FTP_GET) gives TRUE in this case also. As a result blocking mode always uploaded a 0 length file and cleared the local file.
* replace %S with %s, seems that printf can cope with thatDaniel Plasa2020-07-061-1/+1
|
* fix esp32 compile errorsDaniel Plasa2020-05-311-2/+7
|
* trow out some macrosDaniel Plasa2020-05-301-47/+12
|
* fix timeout data typeDaniel Plasa2020-05-301-1/+1
|
* use a buffer size that only depends on the size of the lwip buffer configDaniel Plasa2020-05-291-1/+1
|
* use a buffer size that depends on the size of the lwip buffer configurationDaniel Plasa2020-05-291-2/+1
|
* use esp8266::polledTimeout::oneShotMs fot the timeout handlingDaniel Plasa2020-05-291-7/+8
|
* explicit name error codes as constexprDaniel Plasa2020-05-291-8/+8
|
* Add FTP ClientDaniel Plasa2020-05-281-0/+316