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!

link|improve this question

feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.