Implement RX buffer for WiFi client to speed up small reads

This commit is contained in:
me-no-dev
2018-07-05 22:31:58 +02:00
parent b0c6991bcf
commit 9efecc1be0
2 changed files with 127 additions and 17 deletions

View File

@ -28,11 +28,13 @@
#include <memory>
class WiFiClientSocketHandle;
class WiFiClientRxBuffer;
class WiFiClient : public Client
{
protected:
std::shared_ptr<WiFiClientSocketHandle> clientSocketHandle;
std::shared_ptr<WiFiClientRxBuffer> _rxBuffer;
bool _connected;
public: