I wrote the simplest HTTP server on Qt (see below)
When I try open http://192.168.1.100:4639/ in a browser (Opera), it usually shows a text, but sometimes it shows "Connection closed by a remote server".
How do you think, why?
MainWindow::MainWindow(QWidget *parent) :
...
simpleServer = new QTcpServer(this);
simpleServer->listen(QHostAddress::Any, 4639);
simpleServer->connect(simpleServer, SIGNAL(newConnection()), this, SLOT(newTcpConnection ()));
void MainWindow::newTcpConnection()
{
QTcpSocket *socket = simpleServer->nextPendingConnection();
connect(socket, SIGNAL(disconnected()), socket, SLOT(deleteLater()));
socket->waitForConnected();
int w = socket->write("HTTP/1.0 200 Ok\r\n"
"Content-Type: text/html;\r\n"
"\r\n"
"The text\0");
qDebug() << w;
qDebug() << socket->waitForBytesWritten();
socket->disconnectFromHost();
if (socket->state() != QAbstractSocket::UnconnectedState)
{
if(!socket->waitForDisconnected())
{
qDebug("Not disconnected!");
}
}
}
Thanks for all!