-
Notifications
You must be signed in to change notification settings - Fork 132
Open
Labels
topic: documentationRelated to documentation for the projectRelated to documentation for the projecttype: enhancementProposed improvementProposed improvement
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
Metadata
Metadata
Assignees
Labels
topic: documentationRelated to documentation for the projectRelated to documentation for the projecttype: enhancementProposed improvementProposed improvement