Re: [Spice-devel] spice does not want to connect to the server when using the external ip address

2011-06-21 Thread Attila Sukosd
Hi Stephen, Based on your ifconfig it seems like your trying to access the physical host behind a NAT? Did you by any chance forgot to you forward port 5900 to the machine? Best Regards, Attila Sukosd - DTU Computing Center - www.cc.dtu.dk att...@cc.dtu.

[Spice-devel] spice does not want to connect to the server when using the external ip address

2011-06-21 Thread Stephen Duse-Anthony
Hi, I'm new at using qemu and spicec. I was able to generate two virtual  machine. When I'm inside my network I can view the virtual machine with spicec using the internal IP address. When I try to  use the external IP address I have connection actively refused. I'm sure I'm missing something wh

Re: [Spice-devel] Streaming video performance concepts

2011-06-21 Thread John A. Sullivan III
On Wed, 2011-06-22 at 01:46 +0200, Alon Levy wrote: > On Tue, Jun 21, 2011 at 07:33:58PM -0400, John A. Sullivan III wrote: > > Hello, all. This isn't a critical question so please do not take lots > > of time to answer it unless it would be a helpful general discussion. > > We are still trying to

Re: [Spice-devel] Streaming video performance concepts

2011-06-21 Thread Alon Levy
On Tue, Jun 21, 2011 at 07:33:58PM -0400, John A. Sullivan III wrote: > Hello, all. This isn't a critical question so please do not take lots > of time to answer it unless it would be a helpful general discussion. > We are still trying to properly set our expectations about video > streaming using

Re: [Spice-devel] [RFCv2 00/21] xspice using a shortcircuited driver

2011-06-21 Thread Alon Levy
On Fri, Apr 29, 2011 at 12:49:38PM +0300, Alon Levy wrote: Updated patchset available here: git://anongit.freedesktop.org/~alon/xspice xspice.v5 Changes: fixed segfault on xserver kill rewrote inputs as two drivers, updated spiceqxl.xorg.conf to load them (this fixed the segfault bug as well

[Spice-devel] Streaming video performance concepts

2011-06-21 Thread John A. Sullivan III
Hello, all. This isn't a critical question so please do not take lots of time to answer it unless it would be a helpful general discussion. We are still trying to properly set our expectations about video streaming using SPICE on low bandwidth networks. Indeed, this is our principle interest in S

Re: [Spice-devel] Spice-Client Windows + SSL Bug+fix ?

2011-06-21 Thread Marian Krcmarik
Great, Could you please possibly file a bug on https://bugs.freedesktop.org/ under Spice? - Original Message - > From: thom...@cs.tu-berlin.de > To: "Marian Krcmarik" > Cc: thom...@cs.tu-berlin.de, spice-devel@lists.freedesktop.org > Sent: Tuesday, June 21, 2011 7:03:50 PM > Subject: Re:

Re: [Spice-devel] Spice-Client Windows + SSL Bug+fix ?

2011-06-21 Thread thomast
Hi, I followed http://spice-space.org/page/SSLConnection and used --host-subject. I use: spicec -h 192.168.0.5 -s 5924 --host-subject C=DE,L=Berlin,O=MyTestingBench,CN=spiceserver It Command runs with the Linuxclient without a Problem. On Windows it crashes as I described it. When I remove the [

Re: [Spice-devel] Spice-Client Windows + SSL Bug+fix ?

2011-06-21 Thread Marian Krcmarik
Hi, after quick look and user's perspective, Did you specify --host-subject on the client side? It would give you an error If you do not. - Original Message - > From: thom...@cs.tu-berlin.de > To: spice-devel@lists.freedesktop.org > Sent: Tuesday, June 21, 2011 12:50:04 PM > Subject: [Sp

Re: [Spice-devel] [PATCH v2] sndworker: add AudioVolume/AudioMute messages

2011-06-21 Thread Christophe Fergeau
On Tue, Jun 21, 2011 at 03:32:58PM +0200, Marc-André Lureau wrote: > > It's the only place where mute is an int, why not make it a uint8_t as > > everywhere else? > > Another issue I have with mute is that I assume it's a boolean, however > > there is no place at all where it's made obvious, it cou

Re: [Spice-devel] [PATCH v2] sndworker: add AudioVolume/AudioMute messages

2011-06-21 Thread Marc-André Lureau
Hi On Tue, Jun 21, 2011 at 3:22 PM, Christophe Fergeau wrote: > Hi, > > I finally read the patch in full ;) You'll find a few minor comments > inline. > > On Mon, Jun 20, 2011 at 11:40:01PM +0200, Marc-André Lureau wrote: >> @@ -141,14 +145,22 @@ struct SndWorker { >>      int active; >>  }; >> >

Re: [Spice-devel] [PATCH v2] sndworker: add AudioVolume/AudioMute messages

2011-06-21 Thread Christophe Fergeau
Hi, I finally read the patch in full ;) You'll find a few minor comments inline. On Mon, Jun 20, 2011 at 11:40:01PM +0200, Marc-André Lureau wrote: > @@ -141,14 +145,22 @@ struct SndWorker { > int active; > }; > > +typedef struct SpiceVolumeState { > +uint8_t volume_nchannels; > +

Re: [Spice-devel] Building Windows Client?

2011-06-21 Thread Arnon Gilboa
1. get latest spice & spice-protocol from git 2. get & extract latest wspice libs - currently wspice-x86_20110308.zip & wspice-x64_20110308.zip from http://www.spice-space.org/download.html 3. assuming you have , , , : set REDC_BUILD_DIR= set SPICE_PROTOCOL_DIR= set SPICE_LIBS= 4. run VS2008 -

Re: [Spice-devel] [PATCH v2] sndworker: add AudioVolume/AudioMute messages

2011-06-21 Thread Christophe Fergeau
On Tue, Jun 21, 2011 at 02:24:23PM +0200, Marc-André Lureau wrote: > What do you mean by "volume format"? It's a an uint16_t, for which 0 > means 0% = MUTE, and 65535 or 100% = NORMAL. some kind of enum for when we add support for volume in dB, ie AudioVolume { enum AudioVolumeFormat format;

Re: [Spice-devel] [PATCH v2] sndworker: add AudioVolume/AudioMute messages

2011-06-21 Thread Marc-André Lureau
On Tue, Jun 21, 2011 at 2:19 PM, Christophe Fergeau wrote: > On Tue, Jun 21, 2011 at 12:58:23PM +0200, Marc-André Lureau wrote: >> So we can simply change the message "volume" in % to "volume_db" in >> dB, if both parts say they have the capability to handle volume in dB. >> That's roughly what I

Re: [Spice-devel] [PATCH v2] sndworker: add AudioVolume/AudioMute messages

2011-06-21 Thread Christophe Fergeau
On Tue, Jun 21, 2011 at 12:58:23PM +0200, Marc-André Lureau wrote: > So we can simply change the message "volume" in % to "volume_db" in > dB, if both parts say they have the capability to handle volume in dB. > That's roughly what I had in mind. Ok, so we'll switch from "arbitrary scale" to "dB"

Re: [Spice-devel] Building Windows Client?

2011-06-21 Thread Lubos Kocman
Hi, check archive I got the same question like a two weeks ago. Lubos - Original Message - From: "Dyweni - Spice-Devel" <8xdkw2prr...@dyweni.com> To: spice-devel@lists.freedesktop.org Sent: Tuesday, June 21, 2011 1:59:55 PM Subject: Re: [Spice-devel] Building Windows Client? Hi List (a

Re: [Spice-devel] Building Windows Client?

2011-06-21 Thread Dyweni - Spice-Devel
Hi List (again)! Specifically, I'd like to build the client from the latest GIT sources. --- Thanks, Dyweni On Tue, 21 Jun 2011 06:57:41 -0500, Dyweni - Spice-Devel wrote: Hi List! Has anyone built the windows client recently? The instructions on the wiki seem geared towards Linux only. Wha

[Spice-devel] Building Windows Client?

2011-06-21 Thread Dyweni - Spice-Devel
Hi List! Has anyone built the windows client recently? The instructions on the wiki seem geared towards Linux only. What would the instructions be on windows (Windows 7 64bit and Windows XP SP3 32bit specifically)? -- Thanks, Dyweni ___ Spice-de

Re: [Spice-devel] [PATCH] codegen: typedef the protocol enums

2011-06-21 Thread Christophe Fergeau
On Tue, Jun 21, 2011 at 01:01:12PM +0200, Marc-André Lureau wrote: > Hi, > > On Mon, Jun 20, 2011 at 11:47 PM, Christophe Fergeau > wrote: > > Hi, > > > > On Mon, Jun 20, 2011 at 11:19:43PM +0200, Marc-André Lureau wrote: > >> This is to satisfy a changed manually in > >> 9d5ef9beeca722b2ceff7d15

Re: [Spice-devel] [PATCH] codegen: typedef the protocol enums

2011-06-21 Thread Marc-André Lureau
Hi, On Mon, Jun 20, 2011 at 11:47 PM, Christophe Fergeau wrote: > Hi, > > On Mon, Jun 20, 2011 at 11:19:43PM +0200, Marc-André Lureau wrote: >> This is to satisfy a changed manually in >> 9d5ef9beeca722b2ceff7d15aaa3f07ecfbf when one regenerate enums.h. > > The patch looks good to me, though

Re: [Spice-devel] [PATCH v2] sndworker: add AudioVolume/AudioMute messages

2011-06-21 Thread Marc-André Lureau
Hi, On Tue, Jun 21, 2011 at 10:48 AM, Christophe Fergeau wrote: > On Tue, Jun 21, 2011 at 12:05:56AM +0200, Marc-André Lureau wrote: >> So, the answer in short is that I don't know, but I know it can be >> addressed later, for example when we use dB, which is way better for >> emulated hw. But th

[Spice-devel] Spice-Client Windows + SSL Bug+fix ?

2011-06-21 Thread thomast
Hi, I tried to use SSL with the Windowsclient. When I use the old one (from http://spice-space.org/download/binaries/spice-client-win32-0.6.3.zip): 1308268882 INFO [11344:8892] Platform::set_clipboard_owner: new clipboard owner: none 1308268882 INFO [11344:8892] PlatformWinProc: Unsupported clip

Re: [Spice-devel] [PATCH v2] sndworker: add AudioVolume/AudioMute messages

2011-06-21 Thread Christophe Fergeau
On Tue, Jun 21, 2011 at 12:05:56AM +0200, Marc-André Lureau wrote: > So, the answer in short is that I don't know, but I know it can be > addressed later, for example when we use dB, which is way better for > emulated hw. But that needs even more work, I wanted the basics first. The thing is, once

Re: [Spice-devel] nographic option

2011-06-21 Thread Marian Krcmarik
- Original Message - > From: "John A. Sullivan III" > To: "Marian Krcmarik" > Cc: spice-de...@freedesktop.org > Sent: Monday, June 20, 2011 10:03:38 PM > Subject: Re: [Spice-devel] nographic option > On Mon, 2011-06-20 at 15:06 -0400, Marian Krcmarik wrote: > > > > - Original Message