additional minor fix wrt issue #42
This commit is contained in:
parent
295cc65dce
commit
8b3a3c285a
1 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
#include "pb/server_message.pb.h"
|
#include "pb/server_message.pb.h"
|
||||||
#include "pb/event_server_identification.pb.h"
|
#include "pb/event_server_identification.pb.h"
|
||||||
|
|
||||||
static const unsigned int protocolVersion = 13;
|
static const unsigned int protocolVersion = 14;
|
||||||
|
|
||||||
RemoteClient::RemoteClient(QObject *parent)
|
RemoteClient::RemoteClient(QObject *parent)
|
||||||
: AbstractClient(parent), timeRunning(0), lastDataReceived(0), messageInProgress(false), handshakeStarted(false), messageLength(0)
|
: AbstractClient(parent), timeRunning(0), lastDataReceived(0), messageInProgress(false), handshakeStarted(false), messageLength(0)
|
||||||
|
@ -180,6 +180,7 @@ void RemoteClient::doDisconnectFromServer()
|
||||||
timer->stop();
|
timer->stop();
|
||||||
|
|
||||||
messageInProgress = false;
|
messageInProgress = false;
|
||||||
|
handshakeStarted = false;
|
||||||
messageLength = 0;
|
messageLength = 0;
|
||||||
|
|
||||||
QList<PendingCommand *> pc = pendingCommands.values();
|
QList<PendingCommand *> pc = pendingCommands.values();
|
||||||
|
|
Loading…
Reference in a new issue