mirror of
https://github.com/Links2004/arduinoWebSockets.git
synced 2025-07-16 16:52:05 +02:00
Prevent Compiler Warning: --> add // falls through
prevent Compiler warning by adding // falls through to imform compiler.
This commit is contained in:
@ -784,8 +784,10 @@ void WebSocketsClient::handleHeader(WSclient_t * client, String * headerLine) {
|
|||||||
if(client->isSocketIO) {
|
if(client->isSocketIO) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
// falls through
|
||||||
case 403: ///< Forbidden
|
case 403: ///< Forbidden
|
||||||
// todo handle login
|
// todo handle login
|
||||||
|
// falls through
|
||||||
default: ///< Server dont unterstand requrst
|
default: ///< Server dont unterstand requrst
|
||||||
ok = false;
|
ok = false;
|
||||||
DEBUG_WEBSOCKETS("[WS-Client][handleHeader] serverCode is not 101 (%d)\n", client->cCode);
|
DEBUG_WEBSOCKETS("[WS-Client][handleHeader] serverCode is not 101 (%d)\n", client->cCode);
|
||||||
|
Reference in New Issue
Block a user