Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2009-09-07 05:47:24 +0400
committerThorvald Natvig <slicer@users.sourceforge.net>2009-09-07 05:47:24 +0400
commit96ae2b2a76ad37192b14372ffd430d3ec3570838 (patch)
treee94ff781a7f96c4139cdaec192bed34d9823da2e /src/Connection.h
parent62b83d8b7f36e1cab7213859349d7c7db235533b (diff)
Variable length packet length encoding
Diffstat (limited to 'src/Connection.h')
-rw-r--r--src/Connection.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Connection.h b/src/Connection.h
index 9727cd5f8..04c1f5227 100644
--- a/src/Connection.h
+++ b/src/Connection.h
@@ -43,7 +43,9 @@ class Connection : public QObject {
QSslSocket *qtsSocket;
QTime qtLastPacket;
unsigned int uiType;
- int iPacketLength;
+ unsigned int uiPacketLength;
+ unsigned int uiLengthShift;
+ bool bLengthComplete;
bool bDisconnectedEmitted;
#ifdef Q_OS_WIN
static HANDLE hQoS;