[Spice-devel] [PATCH spice-server] red_worker: revert 8855438a

2012-12-05 Thread Yonit Halperin
red_proccess_commands calls were added after calling guest_set_client_capabilities in order to cleanup the command ring from old commands that the client might not be able to handle. However, calling red_process_commands at this stage does send messages to the client. In addition, since setting the

Re: [Spice-devel] Some spice-html5 issues

2012-12-05 Thread Alon Levy
> Hello, > > I would also be very interested for a fix. > Do you have a bug tracker I can feed? https://bugs.freedesktop.org/enter_bug.cgi?product=Spice > > Thanks. > Erfane > > On Nov 30, 2012, at 11:07 AM, Vincent Desprez > wrote: > > > Hi, > > > > When using spice-html5, I cannot properl

Re: [Spice-devel] build the virt-viewer with usb support for windows

2012-12-05 Thread flooding Controlled
Hi all: I now make virt-viewer work now with USB support. however, When I select the usb device I want to redirect, it calls the error as follow: USB redirection error: Could not redirect USB Device: usbredirhost error: could not detach driver from interface 0 (configuration 1): -12 it seems

Re: [Spice-devel] Some spice-html5 issues

2012-12-05 Thread Erfane Arwani
Hello, I would also be very interested for a fix. Do you have a bug tracker I can feed? Thanks. Erfane On Nov 30, 2012, at 11:07 AM, Vincent Desprez wrote: > Hi, > > When using spice-html5, I cannot properly use the keyboard: especially the > arrow keys or AltGr, or the accent letters (with

Re: [Spice-devel] [PATCH spice-gtk] spice-widget: Fix rendering issue with X11 backend enabled

2012-12-05 Thread Marc-André Lureau
ack - Mensaje original - > commit 5ec6e4d fixes a rendering issue on win32 platform, but raises > another > bug on linux platform. > > If X11 backend is enabled, app window will becomes while screen when > draging it. > This bug can be reproduced easily: > compile spice-gtk using: > $ ./c

[Spice-devel] [PATCH spice-gtk] spice-widget: Fix rendering issue with X11 backend enabled

2012-12-05 Thread Dunrong Huang
commit 5ec6e4d fixes a rendering issue on win32 platform, but raises another bug on linux platform. If X11 backend is enabled, app window will becomes while screen when draging it. This bug can be reproduced easily: compile spice-gtk using: $ ./configure --with-gtk=2.0 --with-x11 $ make $ gtk/spic

[Spice-devel] [PATCH spice-gtk] channel: switch to protocol 1 on error during link-time

2012-12-05 Thread Marc-André Lureau
The Spice server doesn't wait until all the data are received by the remote before closing the socket (that would need SO_LINGER?). Under some racy conditions, the client may not have received the link reply indicating the server protocol version mismatch, which would trigger reconnection with comp

Re: [Spice-devel] [PATCH spice] server: add "port" channel support

2012-12-05 Thread Hans de Goede
Hi, On 12/04/2012 04:22 PM, Alon Levy wrote: A Spice port channel carry arbitrary data between the Spice client and the Spice server. It may be used to provide additional services on top of a Spice connection. For example, a channel can be associated with the qemu monitor for the client to inter

[Spice-devel] [PATCH vdagent 2/2] vdagentd: Fix building warning

2012-12-05 Thread Dunrong Huang
Move some variable declarations to right place. Signed-off-by: Dunrong Huang --- src/vdagentd.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/vdagentd.c b/src/vdagentd.c index 7006d80..a51ac4c 100644 --- a/src/vdagentd.c +++ b/src/vdagentd.c @@ -510,10 +510

[Spice-devel] [PATCH vdagent 1/2] vdagent-x11-randr: Fix building warning

2012-12-05 Thread Dunrong Huang
This patch can be safely applied since it just deletes unused variables. Signed-off-by: Dunrong Huang --- src/vdagent-x11-randr.c | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/vdagent-x11-randr.c b/src/vdagent-x11-randr.c index 2c1819a..e171e7a 100644 --- a/src/v

[Spice-devel] [PATCH vdagent 0/2] Trivial building fix

2012-12-05 Thread Dunrong Huang
These two patches fix some building warning: 1) Delete unused variables. 2) Move some variable declarations to right place. Dunrong Huang (2): vdagent-x11-randr: Fix building warning vdagentd: Fix building warning src/vdagent-x11-randr.c | 8 +--- src/vdagentd.c | 12 --