>
> From: Christophe de Dinechin
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
> index 1090517..973192b 100644
> --- a/src/s
>
> From: Christophe de Dinechin
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 10 ++
> 1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
> index 7f93687..1090517 100644
>
From: Christophe de Dinechin
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 6 ++
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index ed7ddb9..7f93687 100644
--- a/src/spice-streaming-ag
From: Christophe de Dinechin
This lets us get rid of C-style 'goto done' in do_capture.
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 32
1 file changed, 20 insertions(+), 12 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b
From: Christophe de Dinechin
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 1090517..973192b 100644
--- a/src/spice-streaming-agent.cp
From: Christophe de Dinechin
This incidentally fixes a race condition processing X events,
where we could possibly start sending cursor events to the
stream before it was actually open.
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 84 ---
From: Christophe de Dinechin
Add a SpiceStream that owns the actual stream.
This has several benefits:
1. It makes it possible to use proper RAII to deal
with the lifetime of the stream file descriptor
2. It opens the door for dealing with multiple streams
3. It removes one global with asso
From: Christophe de Dinechin
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 10 ++
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 7f93687..1090517 100644
--- a/src/spice-streami
Frediano Ziglio writes:
>>
>> From: Christophe de Dinechin
>>
>> This lets us get rid of C-style 'goto done' in do_capture.
>>
>> Signed-off-by: Christophe de Dinechin
>> ---
>> src/spice-streaming-agent.cpp | 32
>> 1 file changed, 20 insertions(+), 12 deletio
From: Christophe de Dinechin
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 10 ++
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 7f93687..1090517 100644
--- a/src/spice-streami
From: Christophe de Dinechin
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 6 ++
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index ed7ddb9..7f93687 100644
--- a/src/spice-streaming-ag
From: Christophe de Dinechin
This lets us get rid of C-style 'goto done' in do_capture.
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 32
1 file changed, 20 insertions(+), 12 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b
From: Christophe de Dinechin
This incidentally fixes a race condition processing X events,
where we could possibly start sending cursor events to the
stream before it was actually open.
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 83 ---
From: Christophe de Dinechin
Add a SpiceStream that owns the actual stream.
This has several benefits:
1. It makes it possible to use proper RAII to deal
with the lifetime of the stream file descriptor
2. It opens the door for dealing with multiple streams
3. It removes one global with asso
From: Christophe de Dinechin
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 1090517..973192b 100644
--- a/src/spice-streaming-agent.cp
> On 10 Nov 2017, at 14:15, Frediano Ziglio wrote:
>
>>
>> From: Christophe de Dinechin
>>
>> This incidentally fixes a race condition processing X events,
>> where we could possibly start sending cursor events to the
>> stream before it was actually open.
>>
>> Signed-off-by: Christophe de
On Fri, Nov 10, 2017 at 07:33:58AM -0500, Frediano Ziglio wrote:
>
> > Update, after some kvm forum discussions: seems passing the hotspot
> > position is possible, using the vgpu pvinfo mmio page. So it seems
> > we don't need a spice server update.
> >
> > cheers,
> > Gerd
> >
>
> Some mor
>
> From: Christophe de Dinechin
>
> This incidentally fixes a race condition processing X events,
> where we could possibly start sending cursor events to the
> stream before it was actually open.
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 68
> +++
Hi
- Original Message -
> From: Chen Hanxiao
>
> Usually we use busnum:devnum for a usb device.
> Tools such as lsusb, udev did that.
> Our original naming is a little confued.
>
> Signed-off-by: Chen Hanxiao
Reviewed-by: Marc-André Lureau
> ---
> usbredirserver/usbredirserve
>
> From: Christophe de Dinechin
>
> This lets us get rid of C-style 'goto done' in do_capture.
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 32
> 1 file changed, 20 insertions(+), 12 deletions(-)
>
> diff --git a/src/spic
>
> From: Christophe de Dinechin
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 10 ++
> 1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
> index 7f93687..1090517 100644
>
>
> From: Christophe de Dinechin
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 6 ++
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
> index ed7ddb9..7f93687 100644
> --- a
From: Christophe de Dinechin
This incidentally fixes a race condition processing X events,
where we could possibly start sending cursor events to the
stream before it was actually open.
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 68 +++
From: Christophe de Dinechin
Add a SpiceStream that owns the actual stream.
This has several benefits:
1. It makes it possible to use proper RAII to deal
with the lifetime of the stream file descriptor
2. It opens the door for dealing with multiple streams
3. It removes one global with asso
From: Christophe de Dinechin
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 10 ++
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 7f93687..1090517 100644
--- a/src/spice-streami
From: Christophe de Dinechin
This lets us get rid of C-style 'goto done' in do_capture.
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 32
1 file changed, 20 insertions(+), 12 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b
From: Christophe de Dinechin
Signed-off-by: Christophe de Dinechin
---
src/spice-streaming-agent.cpp | 6 ++
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index ed7ddb9..7f93687 100644
--- a/src/spice-streaming-ag
> Hi,
>
> > > The latter implies client mouse mode isn't going to work, so we need
> > > some other way to render the cursor. I see basically two options:
> > >
> >
> > It's a shame not to have client mouse mode support. I wonder if we
> > could modify the intel driver to pass along the cursor
Hi,
> > The latter implies client mouse mode isn't going to work, so we need
> > some other way to render the cursor. I see basically two options:
> >
>
> It's a shame not to have client mouse mode support. I wonder if we
> could modify the intel driver to pass along the cursor details, like
>
> String returned by gdk_x11_screen_get_window_manager_name()
> is never NULL. If the name cannot be retrieved, "unknown" is returned.
> Change in logging behavior:
> If debug flag is specified, _NET_WM_NAME is always logged
> (either the actual name or "unknown").
> ---
> src/vdagent/x11-priv.
On Thu, Nov 09, 2017 at 06:48:08PM +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> This lets us get rid of C-style 'goto done' in do_capture.
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 34 --
> 1 fil
From: Chen Hanxiao
Usually we use busnum:devnum for a usb device.
Tools such as lsusb, udev did that.
Our original naming is a little confued.
Signed-off-by: Chen Hanxiao
---
usbredirserver/usbredirserver.1 | 2 +-
usbredirserver/usbredirserver.c | 6 +++---
2 files changed, 4 insertions
... omissis ...
> >
> >> @@ -441,7 +448,7 @@ int main(int argc, char* argv[])
> >> if (isatty(fileno(stderr)) && isatty(fileno(stdin))) {
> >> stdin_ok = true;
> >> }
> >> -
> >> +
> >> openlog("spice-streaming-agent", stdin_ok? (LOG_PERROR|LOG_PID) :
> >> LOG_PID, LOG_USE
> On 10 Nov 2017, at 10:38, Frediano Ziglio wrote:
>
>>
>> From: Christophe de Dinechin
>>
>> This lets us get rid of C-style 'goto done' in do_capture.
>>
>> Signed-off-by: Christophe de Dinechin
>> ---
>> src/spice-streaming-agent.cpp | 34 --
>> 1 file chan
>
> From: Christophe de Dinechin
>
> This lets us get rid of C-style 'goto done' in do_capture.
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 34 --
> 1 file changed, 20 insertions(+), 14 deletions(-)
>
> diff --git a/src/sp
35 matches
Mail list logo