mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
making qtimer interval a const
This commit is contained in:
parent
2c23dab2e7
commit
129761c002
1 changed files with 2 additions and 1 deletions
|
@ -21,6 +21,7 @@
|
|||
#include "HTTPManager.h"
|
||||
|
||||
const int SOCKET_ERROR_EXIT_CODE = 2;
|
||||
const int SOCKET_CHECK_INTERVAL_IN_MS = 30000;
|
||||
|
||||
HTTPManager::HTTPManager(quint16 port, const QString& documentRoot, HTTPRequestHandler* requestHandler, QObject* parent) :
|
||||
QTcpServer(parent),
|
||||
|
@ -31,7 +32,7 @@ HTTPManager::HTTPManager(quint16 port, const QString& documentRoot, HTTPRequestH
|
|||
bindSocket();
|
||||
_isListeningTimer = new QTimer(this);
|
||||
connect(_isListeningTimer, &QTimer::timeout, this, &HTTPManager::isTcpServerListening);
|
||||
_isListeningTimer->start(10000);
|
||||
_isListeningTimer->start(SOCKET_CHECK_INTERVAL_IN_MS);
|
||||
}
|
||||
|
||||
void HTTPManager::incomingConnection(qintptr socketDescriptor) {
|
||||
|
|
Loading…
Reference in a new issue