diff options
author | SCratORS <scrators@mail.ru> | 2021-10-23 10:36:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-23 10:36:59 +0200 |
commit | 81319930ef6ba5f9afc6f64c345da5990e80167d (patch) | |
tree | 6f0f3a0fe751eb82c94e0bd7a8d7c976086fb0ef | |
parent | Update FTPCommon.h (diff) | |
download | FTPCLientServer-81319930ef6ba5f9afc6f64c345da5990e80167d.tar FTPCLientServer-81319930ef6ba5f9afc6f64c345da5990e80167d.tar.gz FTPCLientServer-81319930ef6ba5f9afc6f64c345da5990e80167d.tar.bz2 FTPCLientServer-81319930ef6ba5f9afc6f64c345da5990e80167d.tar.lz FTPCLientServer-81319930ef6ba5f9afc6f64c345da5990e80167d.tar.xz FTPCLientServer-81319930ef6ba5f9afc6f64c345da5990e80167d.tar.zst FTPCLientServer-81319930ef6ba5f9afc6f64c345da5990e80167d.zip |
-rw-r--r-- | FTPCommon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FTPCommon.h b/FTPCommon.h index c0e15f7..dc395da 100644 --- a/FTPCommon.h +++ b/FTPCommon.h @@ -8,12 +8,12 @@ #ifdef ESP8266 #include <PolledTimeout.h> -// using esp8266::polledTimeout::oneShotMs; // import the type to the local namespace + using ESP8266::polledTimeout::oneShotMs; // import the type to the local namespace #define BUFFERSIZE TCP_MSS #define PRINTu32 "lu" #elif defined ESP32 #include "esp32compat/PolledTimeout.h" -// using esp32::polledTimeout::oneShotMs; + using ESP32::polledTimeout::oneShotMs; #define BUFFERSIZE CONFIG_TCP_MSS #define PRINTu32 "u" #endif |