The problem in my case is that my handler (connexionSuccess) for connected() is called before the result of waitForConnected... it's weird!! My soc.write is failiiiiing... I don't know why :S I write in netcat server by making nc -l -p 27015 ... addr are good, and port too... The server receives the connexion but my client can't send data... Weird!!!!
void clientTCP::connectToServer()
{
QHostAddress addr(IP);
this->soc.abort();
this->soc.connectToHost(addr,port);
if (this->soc.waitForConnected(2000000))
{
qDebug("Connected!");
}
else
qDebug() << "socket error : " << this->soc.errorString();
}
void clientTCP::connexionSuccess()
{
qDebug() << "Connexion success or not?";
this->soc.write("HelloWorld", 11);
}
The message "Connexion success or not?" is SHOWNED before the message "CONNECTED" avec the waitForConnected!!!... It's like I try to write before to be connected... But That's mean that my signal connected Fails RIGHT??? write failed directly!!
Help Please. Thanks