1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-01 03:47:23 +03:00

Fixing Server.available().

I got rid of the parameterless version of the Client() constructor, so I need to pass in MAX_SOCK_NUM.
This commit is contained in:
David A. Mellis
2010-08-03 17:25:11 +00:00
parent 1e0f968387
commit c649777277

View File

@ -63,7 +63,7 @@ Client Server::available()
} }
} }
return Client(); return Client(MAX_SOCK_NUM);
} }
void Server::write(uint8_t b) void Server::write(uint8_t b)