Merge pull request #569 from Links2004/esp8266_bareSSL_native

ESP8266 bare ssl native
This commit is contained in:
Markus
2020-10-04 15:40:43 +02:00
committed by GitHub
7 changed files with 79 additions and 21 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];