summaryrefslogtreecommitdiff
path: root/vnc.h
diff options
context:
space:
mode:
authorCorentin Chary <corentincj@iksaif.net>2010-05-19 09:24:06 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2010-06-01 12:53:09 -0500
commit78c98c78705452e439f5b2ef5447ada23de9988e (patch)
treee1c7e3209e85adc5affa33cb87a21cdb535a2451 /vnc.h
parent9f643ec0f81c1836ce55319709dd387e27c55d3b (diff)
downloadqemu-78c98c78705452e439f5b2ef5447ada23de9988e.tar.gz
vnc: don't clear zlib stream on set_encoding
On init, values are already NULL, but we shouldn't try to reset them each time a client send a set encoding command because this break everything. For example, libvncclient re-send a set encoding command if the framebuffer is resized. This fix framebuffer resizing for zlib encoding. Signed-off-by: Corentin Chary <corentincj@iksaif.net> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vnc.h')
-rw-r--r--vnc.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/vnc.h b/vnc.h
index 3800687943..c8200e90c0 100644
--- a/vnc.h
+++ b/vnc.h
@@ -403,7 +403,6 @@ void vnc_hextile_send_framebuffer_update(VncState *vs, int x,
int y, int w, int h);
void vnc_hextile_set_pixel_conversion(VncState *vs, int generic);
-void vnc_zlib_init(VncState *vs);
void vnc_zlib_send_framebuffer_update(VncState *vs, int x, int y, int w, int h);
#endif /* __QEMU_VNC_H */