[Spice-devel] guest agent windows binaries

2014-02-11 Thread Lindsay Mathieson
Is there somewhere I can download the windows guest agent binaries (vdagent, vdservice) from, so I can manually install them on Windows 8? The link on the Spice Download page http://www.spice-space.org/download/windows/vdagent/vdagent-win-0.7.2 is only to source, not to binaries Also - could s

Re: [Spice-devel] [spice-gtk 12/13] channel: add spice_channel_get_error()

2014-02-11 Thread Marc-André Lureau
- Original Message - > On Tue, Feb 11, 2014 at 06:50:18PM +0100, Marc-André Lureau wrote: > > >> @@ -2248,15 +2269,16 @@ static void *spice_channel_coroutine(void *data) > > >> > > >> > > >> reconnect: > > >> -c->conn = spice_session_channel_open_host(c->session, channel, > > >> &c->

Re: [Spice-devel] [spice-gtk 12/13] channel: add spice_channel_get_error()

2014-02-11 Thread Christophe Fergeau
On Tue, Feb 11, 2014 at 06:50:18PM +0100, Marc-André Lureau wrote: > >> @@ -2248,15 +2269,16 @@ static void *spice_channel_coroutine(void *data) > >> > >> > >> reconnect: > >> -c->conn = spice_session_channel_open_host(c->session, channel, > >> &c->tls); > >> +c->conn = spice_session_chan

Re: [Spice-devel] [spice-gtk 07/13] Fill g_proxy_address_new() with protocol, user and password

2014-02-11 Thread Christophe Fergeau
ACK On Mon, Feb 03, 2014 at 07:02:38PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > This way, the call might eventually support more proxy and > authentication. > --- > gtk/spice-session.c | 7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/gtk/spic

[Spice-devel] [PATCH spice-gtk] Add SpiceVMC GIOStream

2014-02-11 Thread Marc-André Lureau
This allows to use conveniently GIOStream APIs without caring about coroutine and Spice messages details. --- gtk/Makefile.am | 2 + gtk/vmcstream.c | 532 gtk/vmcstream.h | 81 + 3 files changed, 615 insertions(+) create mode 10

Re: [Spice-devel] [spice-gtk 12/13] channel: add spice_channel_get_error()

2014-02-11 Thread Marc-André Lureau
On Tue, Feb 11, 2014 at 6:49 PM, Christophe Fergeau wrote: > On Mon, Feb 03, 2014 at 07:02:43PM +0100, Marc-André Lureau wrote: >> From: Marc-André Lureau >> >> Add a function to retrieve the last GError from a channel, this may be >> useful to provide additional error details to the client. >> -

Re: [Spice-devel] [spice-gtk 13/13] session: add spice_session_get_proxy_uri()

2014-02-11 Thread Christophe Fergeau
On Mon, Feb 03, 2014 at 07:02:44PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > Learn to return the currently configured proxy, to allow > client to tweak parameters, such as username and password. > --- > doc/reference/spice-gtk-sections.txt | 1 + > gtk/map-file

Re: [Spice-devel] [spice-gtk 12/13] channel: add spice_channel_get_error()

2014-02-11 Thread Marc-André Lureau
On Tue, Feb 11, 2014 at 6:47 PM, Christophe Fergeau wrote: > On Mon, Feb 03, 2014 at 07:02:43PM +0100, Marc-André Lureau wrote: >> From: Marc-André Lureau >> >> Add a function to retrieve the last GError from a channel, this may be >> useful to provide additional error details to the client. >> -

Re: [Spice-devel] [spice-gtk 12/13] channel: add spice_channel_get_error()

2014-02-11 Thread Christophe Fergeau
On Mon, Feb 03, 2014 at 07:02:43PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > Add a function to retrieve the last GError from a channel, this may be > useful to provide additional error details to the client. > --- > doc/reference/spice-gtk-sections.txt | 1 + > gtk/map-file

Re: [Spice-devel] [spice-gtk 12/13] channel: add spice_channel_get_error()

2014-02-11 Thread Christophe Fergeau
On Mon, Feb 03, 2014 at 07:02:43PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > Add a function to retrieve the last GError from a channel, this may be > useful to provide additional error details to the client. > --- > doc/reference/spice-gtk-sections.txt | 1 + > gtk/map-file

Re: [Spice-devel] [spice-gtk 09/13] channel: talk to giostream instead of gsocket

2014-02-11 Thread Marc-André Lureau
- Original Message - > On Mon, Feb 03, 2014 at 07:02:40PM +0100, Marc-André Lureau wrote: > > From: Marc-André Lureau > > > > When using glib >= 2.28, use stream API rather than gsocket directly. > > > > This allows for more flexible streams usage, including encoded streams > > from pr

Re: [Spice-devel] [spice-gtk 06/13] http-proxy: add https proxy

2014-02-11 Thread Marc-André Lureau
- Original Message - > On Mon, Feb 03, 2014 at 07:02:37PM +0100, Marc-André Lureau wrote: > > From: Marc-André Lureau > > > > This will require glib 2.28 for GTls support, atm > > --- > > gtk/spice-session.c| 3 + > > gtk/wocky-http-proxy.c | 166 > >

Re: [Spice-devel] [spice-gtk 09/13] channel: talk to giostream instead of gsocket

2014-02-11 Thread Christophe Fergeau
On Mon, Feb 03, 2014 at 07:02:40PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > When using glib >= 2.28, use stream API rather than gsocket directly. > > This allows for more flexible streams usage, including encoded streams > from proxy connections. > --- > gtk/spice-channel-p

Re: [Spice-devel] [spice-gtk 06/13] http-proxy: add https proxy

2014-02-11 Thread Christophe Fergeau
On Mon, Feb 03, 2014 at 07:02:37PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > This will require glib 2.28 for GTls support, atm > --- > gtk/spice-session.c| 3 + > gtk/wocky-http-proxy.c | 166 > + > gtk/wocky-http-proxy.h

Re: [Spice-devel] [spice-gtk 03/13] spice-proxy: parse user and pass

2014-02-11 Thread Marc-André Lureau
On Tue, Feb 11, 2014 at 6:06 PM, Christophe Fergeau wrote: > On Tue, Feb 11, 2014 at 12:00:58PM -0500, Marc-André Lureau wrote: >> > > +} >> > > + >> > > +gchar **proxyv = g_strsplit(uri, ":", 2); >> > >> > This does not seem to be strictly related to this change. >> >> You mean 0 -> 2.. ?

Re: [Spice-devel] [spice-gtk 03/13] spice-proxy: parse user and pass

2014-02-11 Thread Christophe Fergeau
On Tue, Feb 11, 2014 at 12:00:58PM -0500, Marc-André Lureau wrote: > > > +} > > > + > > > +gchar **proxyv = g_strsplit(uri, ":", 2); > > > > This does not seem to be strictly related to this change. > > You mean 0 -> 2.. ? ok... (not saying this should be split out, ..., just mentioning

Re: [Spice-devel] [spice-gtk 04/13] http-proxy: specify Basic scheme

2014-02-11 Thread Christophe Fergeau
On Mon, Feb 03, 2014 at 07:02:35PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > Or Squid will fail with: > WARNING: Unsupported or unconfigured/inactive proxy-auth scheme Makes sense, ACK. If there is an upstream for wocky-http-proxy.c, have you sent your change there? Christop

Re: [Spice-devel] [spice-gtk 03/13] spice-proxy: parse user and pass

2014-02-11 Thread Marc-André Lureau
- Original Message - > On Mon, Feb 03, 2014 at 07:02:34PM +0100, Marc-André Lureau wrote: > > From: Marc-André Lureau > > > > Someday this ought to be GURI.. or SoupUri? > > --- > > gtk/spice-proxy.c | 84 > > - > > gtk/spice-proxy

Re: [Spice-devel] [spice-gtk 04/13] http-proxy: specify Basic scheme

2014-02-11 Thread Marc-André Lureau
- Original Message - > On Mon, Feb 03, 2014 at 07:02:35PM +0100, Marc-André Lureau wrote: > > From: Marc-André Lureau > > > > Or Squid will fail with: > > WARNING: Unsupported or unconfigured/inactive proxy-auth scheme > > Makes sense, ACK. If there is an upstream for wocky-http-proxy.

Re: [Spice-devel] [spice-gtk 05/13] spice-proxy: parse https protocol

2014-02-11 Thread Christophe Fergeau
On Mon, Feb 03, 2014 at 07:02:36PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > --- > gtk/spice-proxy.c | 15 ++- > 1 file changed, 10 insertions(+), 5 deletions(-) > > diff --git a/gtk/spice-proxy.c b/gtk/spice-proxy.c > index 834aa10..ecf7e54 100644 > --- a/gtk/sp

Re: [Spice-devel] [spice-gtk 03/13] spice-proxy: parse user and pass

2014-02-11 Thread Christophe Fergeau
On Mon, Feb 03, 2014 at 07:02:34PM +0100, Marc-André Lureau wrote: > From: Marc-André Lureau > > Someday this ought to be GURI.. or SoupUri? > --- > gtk/spice-proxy.c | 84 > - > gtk/spice-proxy.h | 4 +++ > gtk/spice-session.c | 2 +- >

[Spice-devel] Can the QXL drivers be install on Windows 8/8.1?

2014-02-11 Thread Lindsay Mathieson
As per the subject :) I know the guest installer won't do it, but can they be installed manually? or are they just not compatible? Its starting to become a problem for me at work - we use VM's for a lot of development and testing and its increasingly difficult to avoid using windows 8. thank

Re: [Spice-devel] [PATCH spice-gtk 2/2] Add SpiceVMC GIOStream

2014-02-11 Thread Christophe Fergeau
ACK On Tue, Feb 11, 2014 at 11:26:27AM +0100, Marc-André Lureau wrote: > This allows to use conveniently GIOStream APIs without caring about > coroutine and Spice messages details. > --- > gtk/Makefile.am | 2 + > gtk/vmcstream.c | 515 >

Re: [Spice-devel] [PATCH spice-gtk 1/2] channel: add spice_vmc_write_async()

2014-02-11 Thread Christophe Fergeau
On Tue, Feb 11, 2014 at 11:26:26AM +0100, Marc-André Lureau wrote: > Refactor port code to create a private GIO async function that can send > SPICE_MSGC_SPICEVMC_DATA message over any channel. > --- > gtk/channel-base.c | 48 > > gtk/channel

Re: [Spice-devel] spice qxl resolution stuck at 1024*768

2014-02-11 Thread dimonik
Ofcourse it is :) See attached Xorg.0.log from guest. On 10.02.2014 11:16, Christophe Fergeau wrote: > On Sun, Feb 09, 2014 at 03:10:29PM +0200, dimonik wrote: >> Hi guys, >> >> My VM under Gnome Boxes stuck at 1024x768 and i don't know how to resize >> it to full screen 1920x1080 resolution.

[Spice-devel] [PATCH spice-gtk 2/2] Add SpiceVMC GIOStream

2014-02-11 Thread Marc-André Lureau
This allows to use conveniently GIOStream APIs without caring about coroutine and Spice messages details. --- gtk/Makefile.am | 2 + gtk/vmcstream.c | 515 gtk/vmcstream.h | 81 + 3 files changed, 598 insertions(+) create mode 10

[Spice-devel] [PATCH spice-gtk 0/2] VMC GIOStream

2014-02-11 Thread Marc-André Lureau
Hi, This is the common VMC GIOStream introduced in the NBD and WebDAV series. It should address all of Hans and Christophe reviews. Marc-André Lureau (2): channel: add spice_vmc_write_async() Add SpiceVMC GIOStream gtk/Makefile.am | 2 + gtk/channel-base.c | 48 + gtk

[Spice-devel] [PATCH spice-gtk 1/2] channel: add spice_vmc_write_async()

2014-02-11 Thread Marc-André Lureau
Refactor port code to create a private GIO async function that can send SPICE_MSGC_SPICEVMC_DATA message over any channel. --- gtk/channel-base.c | 48 gtk/channel-port.c | 33 +++-- gtk/spice-channel-priv.h |

Re: [Spice-devel] memory leak in Xspice?

2014-02-11 Thread Andreas Kinzler
Hello Alon, >> I am using Xspice (current head 9f9709b3) on a production server. After a >> while the >> server becomes instable and the Xorg log contains strange out of memory >> errors for >> small allocations (Out of video memory: Could not allocate 3344660 >> bytes). >> When I type "free" on L