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:
@ -63,7 +63,7 @@ Client Server::available()
|
||||
}
|
||||
}
|
||||
|
||||
return Client();
|
||||
return Client(MAX_SOCK_NUM);
|
||||
}
|
||||
|
||||
void Server::write(uint8_t b)
|
||||
|
Reference in New Issue
Block a user