[Spice-devel] UsbDk 1.0.19 released

2017-04-20 Thread Dmitry Fleytman
Hi All, The new version of UsbDk (1.0.19) was released. This version introduces full support for Windows 10 including attestation signature of kernel mode components as well as a few bug fixes and improvements. In order to support Windows 10 UsbDk projects were migrated to Visual Studio 2015 and

[Spice-devel] [RFC PATCH v3] Add protocol to send streams to server

2017-04-20 Thread Frediano Ziglio
This protocol allows a guest to send a video stream to the server. Signed-off-by: Frediano Ziglio --- spice/Makefile.am | 1 + spice/stream-device.h | 96 +++ 2 files changed, 97 insertions(+) create mode 100644 spice/stream-device.h Changes

Re: [Spice-devel] [spice-gtk v2] usb-device-manager: Do not hide devices on client if USB redirection disabled

2017-04-20 Thread Yuri Benditovich
On Tue, Apr 11, 2017 at 12:04 PM, Christophe Fergeau wrote: > On Tue, Apr 11, 2017 at 11:43:03AM +0300, Yuri Benditovich wrote: > > https://bugzilla.redhat.com/show_bug.cgi?id=1431137 > > When auto sharing of USB devices is enabled in remote-viewer's > configuration > > file, Windows spice client

Re: [Spice-devel] [spice-gtk v2] usb-device-manager: Do not hide devices on client if USB redirection disabled

2017-04-20 Thread Victor Toso
Hi, On Thu, Apr 20, 2017 at 01:27:43PM +0300, Yuri Benditovich wrote: > On Tue, Apr 11, 2017 at 12:04 PM, Christophe Fergeau > wrote: > > > On Tue, Apr 11, 2017 at 11:43:03AM +0300, Yuri Benditovich wrote: > > > https://bugzilla.redhat.com/show_bug.cgi?id=1431137 > > > When auto sharing of USB d

[Spice-devel] [PATCH 2/4] sound: Remove on_new_record_channel_client()

2017-04-20 Thread Jonathon Jongsma
It is only called from the constructor, so move all of the code into that function. Signed-off-by: Jonathon Jongsma --- server/sound.c | 23 +-- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/server/sound.c b/server/sound.c index c24911f..fb8f5c6 100644 --- a/

[Spice-devel] [PATCH 4/4] SndChannel: rename 'connection' to 'client'

2017-04-20 Thread Jonathon Jongsma
Since this field holds the SndChannelClient, rename this variable 'client' to make the code a bit easier to understand. Signed-off-by: Jonathon Jongsma --- server/sound.c | 56 1 file changed, 28 insertions(+), 28 deletions(-) diff --git

[Spice-devel] [PATCH 1/4] sound: Remove on_new_playback_channel_client()

2017-04-20 Thread Jonathon Jongsma
This function is only called from the constructor, so move all of that code into the constructor. Signed-off-by: Jonathon Jongsma --- server/sound.c | 47 --- 1 file changed, 20 insertions(+), 27 deletions(-) diff --git a/server/sound.c b/server/sound

[Spice-devel] [PATCH 3/4] sound: Remove dead code in client constructors

2017-04-20 Thread Jonathon Jongsma
When a new PlaybackChannelClient or RecordChannelClient is created, there are several places where we make decisions based on whether the client is active or not. But these checks are done before the 'active' flag is ever set, so this code is effectively dead. This has been the case since the very

Re: [Spice-devel] UsbDk 1.0.19 released

2017-04-20 Thread Oscar Segarra
Hi, I have a Windows 10 client and a Windows 10 kvm guest and the usb redirection does not work yet. Nothing appears in guest event viewer. Any help will be welcome! 2017-04-20 9:47 GMT+02:00 Dmitry Fleytman : > Hi All, > > The new version of UsbDk (1.0.19) was released. > > This version int