Native BareSSL support for ESP8266

see #557, #509, #492, #555, #352
This commit is contained in:
Links
2020-10-04 14:49:22 +02:00
parent a00d3edcb7
commit 91b02341ba
4 changed files with 69 additions and 13 deletions

View File

@@ -424,7 +424,7 @@ int WebSocketsServer::connectedClients(bool ping) {
* @param num uint8_t client id
*/
bool WebSocketsServer::clientIsConnected(uint8_t num) {
if(num >= WEBSOCKETS_SERVER_CLIENT_MAX) {
if(num >= WEBSOCKETS_SERVER_CLIENT_MAX) {
return false;
}
WSclient_t * client = &_clients[num];