Open
Description
The usual code for servicing a clients only works with one connected client at a time.
while (1) {
ethClient = ethServer.available();
if (ethClient) {
modbusTCPServer.accept(ethClient);
while (ethClient.connected()) {
modbusTCPServer.poll();
Is there a correct way (or an example) for how to connect multiple clients to the server at one time.
Thanks