From: Corentin Chary <corentin.chary@gmail.com>
To: qemu-devel@nongnu.org
Cc: Corentin Chary <corentincj@iksaif.net>,
Anthony Liguori <aliguori@linux.vnet.ibm.com>
Subject: Re: [Qemu-devel] [PATCH] vnc: set the right prefered encoding
Date: Thu, 6 May 2010 09:00:58 +0200 [thread overview]
Message-ID: <o2r71cd59b01005060000s410400acna061e5e2c8bc7ada@mail.gmail.com> (raw)
In-Reply-To: <1272974518-20144-1-git-send-email-corentincj@iksaif.net>
On Tue, May 4, 2010 at 2:01 PM, Corentin Chary <corentincj@iksaif.net> wrote:
> From RFB specs: "The order of the encoding types given in this
> message is a hint by the client as to its preference (the first
> encoding specified being most preferred)"
>
> Signed-off-by: Corentin Chary <corentincj@iksaif.net>
> ---
> vnc.c | 14 ++++++++++----
> 1 files changed, 10 insertions(+), 4 deletions(-)
>
> diff --git a/vnc.c b/vnc.c
> index 5241a6a..2d05d8f 100644
> --- a/vnc.c
> +++ b/vnc.c
> @@ -1594,7 +1594,7 @@ static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings)
>
> vnc_zlib_init(vs);
> vs->features = 0;
> - vs->vnc_encoding = 0;
> + vs->vnc_encoding = -1;
> vs->tight_compression = 9;
> vs->tight_quality = 9;
> vs->absolute = -1;
> @@ -1603,18 +1603,24 @@ static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings)
> enc = encodings[i];
> switch (enc) {
> case VNC_ENCODING_RAW:
> - vs->vnc_encoding = enc;
> + if (vs->vnc_encoding != -1) {
> + vs->vnc_encoding = enc;
> + }
hum patch is broken, sending a fixed patch today, sorry
should be if (vs->vnc_encoding == -1)
--
Corentin Chary
http://xf.iksaif.net
next prev parent reply other threads:[~2010-05-06 7:01 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-03 12:31 [Qemu-devel] [PATCH 1/2] vnc: Fix compile error on x86_64 with -D_VNC_DEBUG=1 Corentin Chary
2010-05-03 12:31 ` [Qemu-devel] [PATCH 2/2] vnc: set the right prefered encoding Corentin Chary
2010-05-03 15:25 ` [Qemu-devel] " Anthony Liguori
2010-05-04 12:01 ` [Qemu-devel] [PATCH] " Corentin Chary
2010-05-06 7:00 ` Corentin Chary [this message]
2010-05-03 17:15 ` [Qemu-devel] [PATCH 1/2] vnc: Fix compile error on x86_64 with -D_VNC_DEBUG=1 Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=o2r71cd59b01005060000s410400acna061e5e2c8bc7ada@mail.gmail.com \
--to=corentin.chary@gmail.com \
--cc=aliguori@linux.vnet.ibm.com \
--cc=corentincj@iksaif.net \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).