diff options
author | SCratORS <scrators@mail.ru> | 2021-11-15 11:20:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 11:20:45 +0100 |
commit | f4ebb57dbc46150b219a2f045543112cc7afc900 (patch) | |
tree | 329c780b9e2c300657c09dc9b49f980b5045ad2d | |
parent | Update PolledTimeout.h (diff) | |
download | FTPCLientServer-f4ebb57dbc46150b219a2f045543112cc7afc900.tar FTPCLientServer-f4ebb57dbc46150b219a2f045543112cc7afc900.tar.gz FTPCLientServer-f4ebb57dbc46150b219a2f045543112cc7afc900.tar.bz2 FTPCLientServer-f4ebb57dbc46150b219a2f045543112cc7afc900.tar.lz FTPCLientServer-f4ebb57dbc46150b219a2f045543112cc7afc900.tar.xz FTPCLientServer-f4ebb57dbc46150b219a2f045543112cc7afc900.tar.zst FTPCLientServer-f4ebb57dbc46150b219a2f045543112cc7afc900.zip |
-rw-r--r-- | FTPServer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FTPServer.cpp b/FTPServer.cpp index 0e87fba..98f661e 100644 --- a/FTPServer.cpp +++ b/FTPServer.cpp @@ -46,10 +46,11 @@ FTPServer::FTPServer(FS &_FSImplementation) : FTPCommon(_FSImplementation) aTimeout.resetToNeverExpires(); } -void FTPServer::begin(const String &uname, const String &pword) +void FTPServer::begin(const String &uname, const String &pword, boolean _bUnixLst) { _FTP_USER = uname; _FTP_PASS = pword; + bUnixLst = _bUnixLst; iniVariables(); |