From 6e6023cfd153b87a4c911931e9c984302e43b39b Mon Sep 17 00:00:00 2001 From: Proddy Date: Mon, 1 Jan 2024 16:59:45 +0100 Subject: [PATCH] comment out --- lib/framework/WebSocketTxRx.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/lib/framework/WebSocketTxRx.h b/lib/framework/WebSocketTxRx.h index 066670d2e..b80e28c54 100644 --- a/lib/framework/WebSocketTxRx.h +++ b/lib/framework/WebSocketTxRx.h @@ -1,3 +1,4 @@ +/* #ifndef WebSocketTxRx_h #define WebSocketTxRx_h @@ -107,13 +108,12 @@ class WebSocketTx : virtual public WebSocketConnector { } } - /** - * Broadcasts the payload to the destination, if provided. Otherwise broadcasts to all clients except the origin, if - * specified. - * - * Original implementation sent clients their own IDs so they could ignore updates they initiated. This approach - * simplifies the client and the server implementation but may not be sufficent for all use-cases. - */ + // Broadcasts the payload to the destination, if provided. Otherwise broadcasts to all clients except the origin, if + // specified. + // + // Original implementation sent clients their own IDs so they could ignore updates they initiated. This approach + // simplifies the client and the server implementation but may not be sufficent for all use-cases. + // void transmitData(AsyncWebSocketClient * client, const String & originId) { DynamicJsonDocument jsonDocument = DynamicJsonDocument(WebSocketConnector::_bufferSize); JsonObject root = jsonDocument.to(); @@ -214,3 +214,4 @@ class WebSocketTxRx : public WebSocketTx, public WebSocketRx { }; #endif +*/ \ No newline at end of file