1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-17 06:42:21 +03:00

Fix undefined behaviour in WiFiServer::setNoDelay (#1695)

This commit is contained in:
Ivan Grokhotkov
2016-03-24 01:14:48 +03:00
parent 2bc6d6b4a2
commit 213914e1ce
2 changed files with 4 additions and 10 deletions

View File

@@ -42,6 +42,7 @@ private:
ClientContext* _unclaimed;
ClientContext* _discarded;
bool _noDelay = false;
public:
WiFiServer(IPAddress addr, uint16_t port);