summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Update library.propertiesHEADmasterDaniel Plasa2024-01-161-1/+1
* Merge pull request #19 from AddioElectronicsForks/masterDaniel Plasa2024-01-162-6/+2
|\
| * Added #pragma once to PolledTimeout.hAddioElectronics2022-02-102-6/+2
* | Update library.propertiesDaniel Plasa2024-01-161-1/+1
* | Update library.jsonDaniel Plasa2024-01-161-1/+1
* | Merge pull request #25 from vortigont/esp32_208fixDaniel Plasa2024-01-162-2/+2
|\ \ | |/ |/|
| * fix building for esp32 core 2.0.8Emil Muratov2023-05-022-2/+2
|/
* Merge pull request #16 from SCratORS/masterDaniel Plasa2022-01-034-6/+298
|\
| * Update FTPClient.cppSCratORS2021-11-151-2/+2
| * Update FTPServer.cppSCratORS2021-11-151-4/+6
| * Update FTPServer.cppSCratORS2021-11-151-1/+2
| * Update PolledTimeout.hSCratORS2021-10-231-1/+1
| * Update PolledTimeout.hSCratORS2021-10-231-1/+1
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
| * Update FTPCommon.hSCratORS2021-10-231-1/+1
| * Update PolledTimeout.hSCratORS2021-10-231-1/+1
| * Add files via uploadSCratORS2021-10-231-0/+289
| * Update FTPCommon.hSCratORS2021-10-231-1/+1
| * Update PolledTimeout.hSCratORS2021-10-231-1/+1
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
| * Update FTPCommon.hSCratORS2021-10-231-3/+3
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
| * Update FTPCommon.hSCratORS2021-10-231-1/+1
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
| * Update FTPCommon.hSCratORS2021-10-231-2/+2
* | Merge pull request #11 from norbim1/patch-1Daniel Plasa2022-01-031-2/+2
|\ \ | |/ |/|
| * Correct client upload in blocking modenorbim12020-10-291-2/+2
|/
* fix silly typoDaniel Plasa2020-07-061-1/+1
* replace %S with %s, seems that printf can cope with thatDaniel Plasa2020-07-064-7/+8
* fix issue when FS is out of space when overwriting large filesDaniel Plasa2020-07-061-5/+10
* add docu on esp32Daniel Plasa2020-05-313-12/+13
* fix esp32 compile errorsDaniel Plasa2020-05-318-153/+379
* describe limited use of FuseFS clientsDaniel Plasa2020-05-311-1/+2
* Merge branch 'master' of github.com:dplasa/FTPClientServerDaniel Plasa2020-05-311-1/+1
|\
| * fix typoDaniel Plasa2020-05-311-1/+1
* | fix time string formattingDaniel Plasa2020-05-311-23/+17
|/
* tested against 2.7.1 esp8266 coreDaniel Plasa2020-05-311-0/+3
* Give credits to https://github.com/danbicks and his code posted in https://github.com/esp8266/Arduino/issues/1183#issuecomment-634556135Daniel Plasa2020-05-312-16/+4
* change file date format for LIST command to show proper year in case the file is older than the current yearDaniel Plasa2020-05-301-9/+28
* remove FTP_CLIENT_MSG macroDaniel Plasa2020-05-302-97/+114
* trow out some macrosDaniel Plasa2020-05-301-47/+12
* fix timeout data typeDaniel Plasa2020-05-302-2/+2
* LIST output format change to match FuseFSDaniel Plasa2020-05-301-13/+40
* use a buffer size that only depends on the size of the lwip buffer configDaniel Plasa2020-05-292-3/+3
* use a buffer size that depends on the size of the lwip buffer configurationDaniel Plasa2020-05-294-6/+6
* use esp8266::polledTimeout::oneShotMs fot the timeout handlingDaniel Plasa2020-05-297-51/+44
* explicit name error codes as constexprDaniel Plasa2020-05-292-11/+19
* remove duplicatesDaniel Plasa2020-05-283-1517/+0
* update lib propertiesDaniel Plasa2020-05-282-3/+3
* add Client docuDaniel Plasa2020-05-282-17/+62
* add Client exampleDaniel Plasa2020-05-283-4/+168
* move some functions to FTPCommonDaniel Plasa2020-05-282-0/+1308
* Add FTP ClientDaniel Plasa2020-05-284-0/+712
* fix counting of transfered bytesDaniel Plasa2020-05-261-0/+1
* use ESP.getMaxFreeBlockSize() / 2 as transfer buffer size for RETRDaniel Plasa2020-05-265-58/+52
* fix typoDaniel Plasa2020-05-261-4/+4
* fix typoDaniel Plasa2020-05-261-1/+1
* Update README.mdDaniel Plasa2020-05-261-2/+3
* cleanup readme, undecided on the transfer buffer, work in progress on thatDaniel Plasa2020-05-264-25/+37
* try subtile malloc()'ing buffers with 16 byte steps until we get somethingDaniel Plasa2020-05-261-16/+12
* rewrite/reworks to also use LittleFS since SPIFFS has become deprecatedDaniel Plasa2020-05-2411-1198/+1789
* Merge pull request #20 from sandtec65/masterDavid Paiva2018-10-051-6/+12
|\
| * Prevent disconnect before file is fully receivedsandtec652018-07-271-6/+12
|/
* Update README.mdDavid Paiva2017-10-181-2/+3
* ESP32 Support Changesnailbuster2017-10-185-56/+36
* Merge pull request #11 from beegee-tokyo/masterDavid Paiva2017-10-183-4/+121
|\
| * Added ESP32 supportbeegee-tokyo2017-10-162-4/+102
| * Added library.json for use with PlatformIOBernd Giesecke2016-08-231-0/+19
|/
* Merge pull request #1 from lnxbil/patch-1v1.0David Paiva2016-02-041-3/+3
|\
| * Update library.propertiesAndreas Steinel2016-02-041-3/+3
|/
* Update README.mdDavid Paiva2016-02-041-0/+2
* Update README.mdDavid Paiva2016-02-041-1/+1
* Update README.mdDavid Paiva2016-02-041-1/+3
* Create README.mdnailbuster2016-02-041-0/+19
* initialnailbuster2016-02-044-0/+1102
* Initial commitnailbuster2016-02-041-0/+504