Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.