1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +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)