I've used the AsyncStreams to connect two devices in the client-server structure.
Now I whould like to connect more clients to the same server.
How can I do ?
angelo
You can connect as many clients as needed. You need to continue listening to new clients. You will need to manage a socket and AsyncStream object for each connection.
Consider using HttpServer. If it meets your requirements then it will be much simpler to use.