summaryrefslogtreecommitdiffstats
path: root/src/remoteobjects/qconnectionfactories.cpp
diff options
context:
space:
mode:
authorBogDan Vatra <bogdan@kdab.com>2017-10-20 09:32:24 +0300
committerMichael Brasser <michael.brasser@live.com>2017-10-24 00:35:59 +0000
commit4f86dbe54d493cf33c1121e88dd7f64ab678343a (patch)
tree1508b0e2a0f47436fe959eb2b81785760277b8db /src/remoteobjects/qconnectionfactories.cpp
parenta3e68cda27ff01ab8fab73978f3f09db21222a98 (diff)
Send and check the protocol versionv5.10.0-beta3
[ChangeLog] This is a backwards incompatible change, but is required for future changes to the underlying datastream protocol Change-Id: I7399977b99ede6308ecfa81dbdd2387027b2007b Reviewed-by: Brett Stottlemyer <bstottle@ford.com>
Diffstat (limited to 'src/remoteobjects/qconnectionfactories.cpp')
-rw-r--r--src/remoteobjects/qconnectionfactories.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/remoteobjects/qconnectionfactories.cpp b/src/remoteobjects/qconnectionfactories.cpp
index 6be1e17..0290780 100644
--- a/src/remoteobjects/qconnectionfactories.cpp
+++ b/src/remoteobjects/qconnectionfactories.cpp
@@ -67,6 +67,7 @@ inline bool fromDataStream(QDataStream &in, QRemoteObjectPacketTypeEnum &type, Q
in >> _type;
type = Invalid;
switch (_type) {
+ case Handshake: type = Handshake; break;
case InitPacket: type = InitPacket; break;
case InitDynamicPacket: type = InitDynamicPacket; break;
case AddObject: type = AddObject; break;