I'am have exception in this code:
void CSSocket::incomingData()
{
char szData[4097];
qint16 nRead = this->read(szData, 4096);
if(nRead == 0)
{
this->disconnectFromHost(); // <-------- Exception !
this->close();
return;
}
.....
.....
.....
}
void CSSocket::incomingData()
{
char szData[4097];
qint16 nRead = this->read(szData, 4096);
if(nRead == 0)
{
this->disconnectFromHost(); // <-------- Exception !
this->close();
return;
}
.....
.....
.....
}
To copy to clipboard, switch view to plain text mode
why ???
Bookmarks