WebSocket callback trampoline
| 1523 | |
| 1524 | // WebSocket callback trampoline |
| 1525 | void CrossPointWebServer::wsEventCallback(uint8_t num, WStype_t type, uint8_t* payload, size_t length) { |
| 1526 | if (wsInstance) { |
| 1527 | wsInstance->onWebSocketEvent(num, type, payload, length); |
| 1528 | } |
| 1529 | } |
| 1530 | |
| 1531 | // WebSocket event handler for fast binary uploads |
| 1532 | // Protocol: |
nothing calls this directly
no test coverage detected