Re: [Spice-devel] Embedding the Spice Client in Windows

2015-02-26 Thread Lindsay Mathieson
Hi Flash, I got part way through a QT4 spice client here: https://www.gitorious.org/qspice Establishes a framework for displaying video amd handling keyboard events (keyboard keys are not fully mapped yet). Alas, has languished for some weeks while I deal with paying work etc. On 25 February

Re: [Spice-devel] [PATCH] m4: WARN FLAGS: Drop -Wenum-compare

2015-02-26 Thread Uri Lublin
That's V2. What changed since v1: comment and commit message. On 02/26/2015 05:47 PM, Uri Lublin wrote: My RHEL-6 gcc (4.4.7) complains a lot about it: cc1: warning: command line option "-Wenum-compare" is valid for C++/ObjC++ but not for C For older gcc version (e.g. 4.4.7), man gcc s

Re: [Spice-devel] [PATCH] session: accept argument in URI without value

2015-02-26 Thread Victor Toso
Hi, On Thu, Feb 26, 2015 at 10:44:55AM -0500, Marc-André Lureau wrote: > > - Original Message - > > The examples below should be considered valid URIs: > > > > e.g: spice://localhost?port=5900&tls-port= > > e.g: spice://localhost?tls-port=&port=5900 > > > > This patch deals with arguments

[Spice-devel] [PATCH] m4: WARN FLAGS: Drop -Wenum-compare

2015-02-26 Thread Uri Lublin
My RHEL-6 gcc (4.4.7) complains a lot about it: cc1: warning: command line option "-Wenum-compare" is valid for C++/ObjC++ but not for C For older gcc version (e.g. 4.4.7), man gcc says -Wenum-compare is "C++ and Objective-C++ only". For newer gcc (e.g. 4.9.2), man gcc says "In C this warni

Re: [Spice-devel] [PATCH] session: accept argument in URI without value

2015-02-26 Thread Marc-André Lureau
- Original Message - > The examples below should be considered valid URIs: > > e.g: spice://localhost?port=5900&tls-port= > e.g: spice://localhost?tls-port=&port=5900 > > This patch deals with arguments with empty value; Looks good, would you mind making a second patch to test parsing

[Spice-devel] [PATCH] session: accept argument in URI without value

2015-02-26 Thread Victor Toso
The examples below should be considered valid URIs: e.g: spice://localhost?port=5900&tls-port= e.g: spice://localhost?tls-port=&port=5900 This patch deals with arguments with empty value; --- gtk/spice-session.c | 20 ++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --

[Spice-devel] UsbDk project as Windows USB redirection engine for Spice Client

2015-02-26 Thread Dmitry Fleytman
Hi All, We are happy to announce the USB Development Kit (UsbDk) project. USB Development Kit is a set of software modules meant to provide Windows user mode applications with direct and exclusive access to USB devices. This goal is achieved by by detaching given USB device from Windows PNP mana

Re: [Spice-devel] [PATCH] session: do not set empty port value from uri

2015-02-26 Thread Victor Toso
Hey, On Thu, Feb 26, 2015 at 08:07:18AM -0500, Marc-André Lureau wrote: > Hi > > - Original Message - > > Setting an empty port value from URI makes spicy unable to connect from > > 'Recent connections' due a break URI given by spice_uri_create: > > > > e.g: localhost?port=5900&tls-port= >

Re: [Spice-devel] [PATCH] session: do not set empty port value from uri

2015-02-26 Thread Marc-André Lureau
Hi - Original Message - > Setting an empty port value from URI makes spicy unable to connect from > 'Recent connections' due a break URI given by spice_uri_create: > > e.g: localhost?port=5900&tls-port= > > Trying to connect with above URI breaks at spice_parse_uri with > 'Failed to pars

[Spice-devel] [PATCH] session: do not set empty port value from uri

2015-02-26 Thread Victor Toso
Setting an empty port value from URI makes spicy unable to connect from 'Recent connections' due a break URI given by spice_uri_create: e.g: localhost?port=5900&tls-port= Trying to connect with above URI breaks at spice_parse_uri with 'Failed to parse URI query' As we already check if port and t