summaryrefslogtreecommitdiffstats
path: root/client/red_channel.cpp
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-06-23 12:18:41 +0200
committerAlexander Larsson <alexl@redhat.com>2010-06-23 12:18:41 +0200
commiteb3fe11d944acf32d7795fb6d0d69c25ce800d54 (patch)
tree4a2596d6e4ed7edddb1600278a05a248aef68b02 /client/red_channel.cpp
parentf35ac2049a84fd5edbea43f679dfcd3cd4173367 (diff)
downloadspice-eb3fe11d944acf32d7795fb6d0d69c25ce800d54.tar.gz
spice-eb3fe11d944acf32d7795fb6d0d69c25ce800d54.tar.xz
spice-eb3fe11d944acf32d7795fb6d0d69c25ce800d54.zip
Fix version mismatch error on connect
Protocol is 0 (auto), 1 (old), or 2 (new). This is (apart from 0) the same as the major number for the stable protocol. However, the current major is ~(-1) to signify it being unstable, so don't use the major number as source for setting or comparing protocol.
Diffstat (limited to 'client/red_channel.cpp')
-rw-r--r--client/red_channel.cpp18
1 files changed, 13 insertions, 5 deletions
diff --git a/client/red_channel.cpp b/client/red_channel.cpp
index d499e8cf..3fa3f51a 100644
--- a/client/red_channel.cpp
+++ b/client/red_channel.cpp
@@ -56,17 +56,20 @@ void RedChannelBase::link(uint32_t connection_id, const std::string& password,
BIO *bioKey;
RSA *rsa;
uint8_t *buffer, *p;
+ uint32_t expected_major;
header.magic = SPICE_MAGIC;
header.size = sizeof(link_mess);
if (protocol == 1) {
/* protocol 1 == major 1, old 0.4 protocol, last active minor */
- header.major_version = 1;
+ expected_major = header.major_version = 1;
header.minor_version = 3;
} else if (protocol == 2) {
/* protocol 2 == current */
- header.major_version = SPICE_VERSION_MAJOR;
+ expected_major = header.major_version = SPICE_VERSION_MAJOR;
header.minor_version = SPICE_VERSION_MINOR;
+ } else {
+ THROW("unsupported protocol version specified");
}
link_mess.connection_id = connection_id;
link_mess.channel_type = _type;
@@ -105,10 +108,10 @@ void RedChannelBase::link(uint32_t connection_id, const std::string& password,
THROW_ERR(SPICEC_ERROR_CODE_CONNECT_FAILED, "bad magic");
}
- if (header.major_version != protocol) {
+ if (header.major_version != expected_major) {
THROW_ERR(SPICEC_ERROR_CODE_VERSION_MISMATCH,
"version mismatch: expect %u got %u",
- protocol,
+ expected_major,
header.major_version);
}
@@ -447,7 +450,12 @@ void RedChannel::run()
_client.get_password().c_str());
/* If automatic protocol, remember the first connect protocol type */
if (_client.get_protocol() == 0) {
- _client.set_protocol(get_peer_major());
+ if (get_peer_major() == 1) {
+ _client.set_protocol(1);
+ } else {
+ /* Major is 2 or unstable high value, use 2 */
+ _client.set_protocol(2);
+ }
}
/* Initialize when we know the remote major version */
if (_client.get_peer_major() == 1) {