- Sat May 23, 2015 5:33 am
#18240
This version will allow just one connection at a time. I feel that is more appropriate. If you have multiple clients connecting, they may interfere if they can connect at the same time. If a connection is setup to the esp while there is already a connection active, it will just ignore the request (nothing sent back, no TCP RST ("connection refused")). This is actually good because a tcp connect will try for some time, so the second connect will get connected as soon as the actual connection is finished.
For the best/most robust interaction I'd recommend this interface:
https://github.com/eriksl/libespif (includes a standalone executable), but it works just as well with telnet, netcat, etc.
With above lib/exec I've managed to make around five connections per second (+ exchange data) from two "competing" clients, without problems and without mixup of the data.