I have a problem with the QTcpSocket library.
I created two programs that communicate with the same client using the same socket connection. Unfortunately, doing in this way, if the programs write at the same time, the client reads only one string by the socket (generally the first one).
So i need to know if a particular function exists (or a way) to know if the socket is or not busy in order to delay the second string to send.
Thanks in advance.