| 140 | } |
| 141 | |
| 142 | void NativeHttpServer::broadcast(fl::span<const u8> data) { |
| 143 | // Send to all clients |
| 144 | for (auto& client : mClients) { |
| 145 | send(client.clientId, data); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | void NativeHttpServer::update(u32 currentTimeMs) { |
| 150 | // Check for dead connections |
no test coverage detected