> On 20 Feb 2018, at 22:38, Jonathon Jongsma wrote:
>
> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
>> From: Christophe de Dinechin
>>
>> Get rid of C-style 'goto done' in do_capture.
>> Get rid of global streamfd, pass it around (cleaned up in later
>> patch)
>> Fixes a
Hi
On Fri, Feb 16, 2018 at 11:30 AM, Daniel P. Berrangé
wrote:
> On Fri, Feb 16, 2018 at 11:13:06AM +0100, marcandre.lur...@redhat.com wrote:
>> From: Marc-André Lureau
>>
>> spice:// has a weird scheme encoding, where it can accept both plain
>> and tls ports with URI query parameters. However,
On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> Get rid of C-style 'goto done' in do_capture.
> Get rid of global streamfd, pass it around (cleaned up in later
> patch)
> Fixes a race condition, make sure we only use stream after opening
>
> Si
On Tue, 2018-02-20 at 14:29 +0100, Lukáš Hrázký wrote:
> On Tue, 2018-02-20 at 10:47 +0100, Christophe de Dinechin wrote:
> > > On 20 Feb 2018, at 10:43, Lukáš Hrázký
> > > wrote:
> > >
> > > On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> > > > From: Christophe de Dinechin
>
In all paths errors from this function are treated like fatal
error, there's no need to handle all manually potentially
forgetting to handle errors.
Also avoid to deal directly with logging moving the responsibility
to other layers.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cp
Avoids losing sync with the device.
Handle some missing messages.
Changes since v2:
- fix typo;
- use the term "handle" instead of "read";
- return void from handling functions.
Changes since v1:
- avoid the usage of ERROR macro.
Frediano Ziglio (4):
Use exception handling data from streaming
Prepare to add support for other messages.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cpp | 26 ++
1 file changed, 18 insertions(+), 8 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 5613934..8d91f2d 100644
Do not bail if the server is attempting to communicate some extensions
but just ignore as at the moment we support none.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cpp | 30 ++
1 file changed, 30 insertions(+)
diff --git a/src/spice-streaming-agent.
Base error message handling.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cpp | 9 +
1 file changed, 9 insertions(+)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 31c655c..343b252 100644
--- a/src/spice-streaming-agent.cpp
+++ b/src/spi
> On Tue, 2018-02-20 at 18:33 +0100, Christophe de Dinechin wrote:
> > > On 20 Feb 2018, at 15:30, Frediano Ziglio
> > > wrote:
> > >
> > > Do not bail if the server is attempting to communicate some
> > > extensions
> > > but just ignore as at the moment we support none.
> > >
> > > Signed-off-
On Tue, 2018-02-20 at 18:33 +0100, Christophe de Dinechin wrote:
> > On 20 Feb 2018, at 15:30, Frediano Ziglio
> > wrote:
> >
> > Do not bail if the server is attempting to communicate some
> > extensions
> > but just ignore as at the moment we support none.
> >
> > Signed-off-by: Frediano Zigli
[Forgot to send, sorry for delay]
> On 19 Feb 2018, at 19:03, Lukáš Hrázký wrote:
>
> On Fri, 2018-02-16 at 17:59 +0100, Christophe de Dinechin wrote:
>>> On 16 Feb 2018, at 17:40, Frediano Ziglio wrote:
>>>
From: Christophe de Dinechin
Get rid of C-style 'goto done' in
> On 20 Feb 2018, at 15:30, Frediano Ziglio wrote:
>
> Do not bail if the server is attempting to communicate some extensions
> but just ignore as at the moment we support none.
>
> Signed-off-by: Frediano Ziglio
> ---
> src/spice-streaming-agent.cpp | 31 +++
> 1 fi
> On 20 Feb 2018, at 18:05, Frediano Ziglio wrote:
>
>>>
>>> On 20 Feb 2018, at 17:49, Frediano Ziglio wrote:
>>>
>>> Currently exception from a plugin are not handled when creating
>>> a capture engine.
>>> Capture the exception and try to use another plugin instead of
>>> bailing out.
>>>
>
> > On 20 Feb 2018, at 17:49, Frediano Ziglio wrote:
> >
> > Currently exception from a plugin are not handled when creating
> > a capture engine.
> > Capture the exception and try to use another plugin instead of
> > bailing out.
> > This was tested with an experimental GStreamer plugin.
> >
> On 20 Feb 2018, at 17:49, Frediano Ziglio wrote:
>
> Currently exception from a plugin are not handled when creating
> a capture engine.
> Capture the exception and try to use another plugin instead of
> bailing out.
> This was tested with an experimental GStreamer plugin.
>
> Signed-off-by:
Currently exception from a plugin are not handled when creating
a capture engine.
Capture the exception and try to use another plugin instead of
bailing out.
This was tested with an experimental GStreamer plugin.
Signed-off-by: Frediano Ziglio
---
src/concrete-agent.cpp | 9 -
1 file cha
> On 20 Feb 2018, at 16:51, Lukáš Hrázký wrote:
>
> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
>> From: Christophe de Dinechin
>>
>> This is not a really nice abstraction at this point, but still a step in the
>> right way
>>
>> Signed-off-by: Christophe de Dinechin
>
> From: Christophe de Dinechin
>
> - The Stream class now deals with locking and sending messages
> - The Message<> template class deals with the general writing mechanisms
> - Three classes, FormatMessage, FrameMessage and X11CursorMessage represent
> individual messages
>
> The various classes
> On 20 Feb 2018, at 16:53, Lukáš Hrázký wrote:
>
> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
>> From: Christophe de Dinechin
>>
>> Signed-off-by: Christophe de Dinechin
>> ---
>> src/concrete-agent.hpp| 4
>> src/spice-streaming-agent.cpp | 14 ++-
On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/concrete-agent.hpp| 4
> src/spice-streaming-agent.cpp | 14 ++
> 2 files changed, 10 insertions(+), 8 deletions(-)
>
On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> This is not a really nice abstraction at this point, but still a step in the
> right way
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 14 +-
> 1
On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> This class will need to be moved to a separate file in a later patch.
> This is done in two steps to make the evolution of the code easier to track,
> as well as to facilitate later 'git bisect'
>
> On 20 Feb 2018, at 15:29, Lukáš Hrázký wrote:
>
> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
>> From: Christophe de Dinechin
>>
>> - The Stream class now deals with locking and sending messages
>> - The Message<> template class deals with the general writing mechanisms
On Tue, Feb 20, 2018 at 12:48:48PM +0100, Victor Toso wrote:
> On Thu, Jan 18, 2018 at 10:31:26AM +0100, Christophe Fergeau wrote:
> > At least on X.org, malicious code could run the equivalent of "watch
> > xsel -o --clipboard" in a VM, and would then be able to track all the
> > clipboard content
> On 20 Feb 2018, at 15:57, Lukáš Hrázký wrote:
>
> On Tue, 2018-02-20 at 15:48 +0100, Christophe de Dinechin wrote:
>>> On 20 Feb 2018, at 15:45, Lukáš Hrázký wrote:
>>>
>>> On Tue, 2018-02-20 at 15:07 +0100, Christophe de Dinechin wrote:
> On 19 Feb 2018, at 17:47, Frediano Ziglio wrot
> On 20 Feb 2018, at 15:48, Christophe de Dinechin wrote:
>
>
>
>> On 20 Feb 2018, at 15:45, Lukáš Hrázký wrote:
>>
>> On Tue, 2018-02-20 at 15:07 +0100, Christophe de Dinechin wrote:
On 19 Feb 2018, at 17:47, Frediano Ziglio wrote:
>
> On Mon, 2018-02-19 at 15:52 +
On Tue, 2018-02-20 at 15:48 +0100, Christophe de Dinechin wrote:
> > On 20 Feb 2018, at 15:45, Lukáš Hrázký wrote:
> >
> > On Tue, 2018-02-20 at 15:07 +0100, Christophe de Dinechin wrote:
> > > > On 19 Feb 2018, at 17:47, Frediano Ziglio wrote:
> > > >
> > > > >
> > > > > On Mon, 2018-02-19 at
> On 20 Feb 2018, at 15:45, Lukáš Hrázký wrote:
>
> On Tue, 2018-02-20 at 15:07 +0100, Christophe de Dinechin wrote:
>>> On 19 Feb 2018, at 17:47, Frediano Ziglio wrote:
>>>
On Mon, 2018-02-19 at 15:52 +, Frediano Ziglio wrote:
> Allows to reuse it.
>
> Signed-off-
> On 20 Feb 2018, at 15:36, Lukáš Hrázký wrote:
>
> On Tue, 2018-02-20 at 15:22 +0100, Christophe de Dinechin wrote:
>>> On 19 Feb 2018, at 18:29, Lukáš Hrázký wrote:
>>>
>>> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
From: Christophe de Dinechin
The str
On Tue, 2018-02-20 at 15:07 +0100, Christophe de Dinechin wrote:
> > On 19 Feb 2018, at 17:47, Frediano Ziglio wrote:
> >
> > >
> > > On Mon, 2018-02-19 at 15:52 +, Frediano Ziglio wrote:
> > > > Allows to reuse it.
> > > >
> > > > Signed-off-by: Frediano Ziglio
> > > > ---
> > > > src/Mak
On Tue, 2018-02-20 at 15:22 +0100, Christophe de Dinechin wrote:
> > On 19 Feb 2018, at 18:29, Lukáš Hrázký wrote:
> >
> > On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> > > From: Christophe de Dinechin
> > >
> > > The streaming agent started as C code. This series converts
Prepare to add support for other messages.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cpp | 26 ++
1 file changed, 18 insertions(+), 8 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 80e3408..d72c30b 100644
Avoids losing sync with the device.
Handle some missing messages.
Changes since v1:
- avoid the usage of ERROR macro.
Frediano Ziglio (5):
Be more restrictive about error handling
Use exception handling data from streaming device
Separate handling start/stop message from server
Handle cap
Do not bail if the server is attempting to communicate some extensions
but just ignore as at the moment we support none.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cpp | 31 +++
1 file changed, 31 insertions(+)
diff --git a/src/spice-streaming-agent
In all paths errors from this function are treated like fatal
error, there's no need to handle all manually potentially
forgetting to handle errors.
Also avoid to deal directly with logging moving the responsibility
to other layers.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cp
Base error message handling.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cpp | 10 ++
1 file changed, 10 insertions(+)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 9547e49..7ad8c42 100644
--- a/src/spice-streaming-agent.cpp
+++ b/src/
There's no much point in ignoring the error if these errors cause the
communication to be out of sync.
Ignoring them just change the state to indeterminate.
Signed-off-by: Frediano Ziglio
---
src/spice-streaming-agent.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/
On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> - The Stream class now deals with locking and sending messages
> - The Message<> template class deals with the general writing mechanisms
> - Three classes, FormatMessage, FrameMessage and X11Curso
> On 19 Feb 2018, at 18:29, Lukáš Hrázký wrote:
>
> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
>> From: Christophe de Dinechin
>>
>> The streaming agent started as C code. This series converts
>> the style to something that is more usual for C++, notably:
>>
>> - Adds e
> On 19 Feb 2018, at 17:47, Frediano Ziglio wrote:
>
>>
>> On Mon, 2018-02-19 at 15:52 +, Frediano Ziglio wrote:
>>> Allows to reuse it.
>>>
>>> Signed-off-by: Frediano Ziglio
>>> ---
>>> src/Makefile.am| 1 +
>>> src/mjpeg-fallback.cpp | 7 +--
>>> src/utils.hpp | 1
>
> > On 20 Feb 2018, at 13:13, Frediano Ziglio wrote:
> >
> > Use more simple syntax for throwing errors.
> >
> > Signed-off-by: Frediano Ziglio
> > ---
> > src/mjpeg-fallback.cpp | 8 +---
> > 1 file changed, 1 insertion(+), 7 deletions(-)
> >
> > diff --git a/src/mjpeg-fallback.cpp b/sr
On Tue, 2018-02-20 at 10:47 +0100, Christophe de Dinechin wrote:
> > On 20 Feb 2018, at 10:43, Lukáš Hrázký wrote:
> >
> > On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> > > From: Christophe de Dinechin
> > >
> > > Signed-off-by: Christophe de Dinechin
> > > ---
> > > src/s
> On 20 Feb 2018, at 13:13, Frediano Ziglio wrote:
>
> Use more simple syntax for throwing errors.
>
> Signed-off-by: Frediano Ziglio
> ---
> src/mjpeg-fallback.cpp | 8 +---
> 1 file changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/src/mjpeg-fallback.cpp b/src/mjpeg-fallback.cpp
On Tue, 2018-02-20 at 12:13 +, Frediano Ziglio wrote:
> Use more simple syntax for throwing errors.
>
> Signed-off-by: Frediano Ziglio
> ---
> src/mjpeg-fallback.cpp | 8 +---
> 1 file changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/src/mjpeg-fallback.cpp b/src/mjpeg-fallback.c
>
> Hi,
>
> On Tue, Feb 20, 2018 at 10:00:41AM +0100, Lukáš Hrázký wrote:
> > On Mon, 2018-02-19 at 21:19 +0200, Uri Lublin wrote:
> > > On 02/19/2018 06:47 PM, Lukáš Hrázký wrote:
> > > > On Mon, 2018-02-19 at 18:29 +0200, Uri Lublin wrote:
> > > > > On 02/14/2018 06:37 PM, Christophe Fergeau wr
Use more simple syntax for throwing errors.
Signed-off-by: Frediano Ziglio
---
src/mjpeg-fallback.cpp | 8 +---
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/src/mjpeg-fallback.cpp b/src/mjpeg-fallback.cpp
index cf704c6..fd37167 100644
--- a/src/mjpeg-fallback.cpp
+++ b/src/mj
On Thu, Jan 18, 2018 at 10:31:26AM +0100, Christophe Fergeau wrote:
> At least on X.org, malicious code could run the equivalent of "watch
> xsel -o --clipboard" in a VM, and would then be able to track all the
> clipboard content, even when the spice-gtk widget is not focused.
>
> At the moment,
On Tue, Feb 20, 2018 at 12:22:52PM +0100, Lukáš Hrázký wrote:
> On Tue, 2018-02-20 at 11:59 +0100, Victor Toso wrote:
> > On Tue, Feb 20, 2018 at 11:45:33AM +0100, Lukáš Hrázký wrote:
> > > > That tests are not enabled by default. If we enable it by default
> > > > here I would expect to do the sam
> > On 20 Feb 2018, at 10:39, Lukáš Hrázký wrote:
> >
> > On Tue, 2018-02-20 at 10:18 +0100, Christophe de Dinechin wrote:
> >>> On Feb 19, 2018, at 7:19 PM, Lukáš Hrázký wrote:
> >>>
> >>> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
> >
On Tue, 2018-02-20 at 11:59 +0100, Victor Toso wrote:
> On Tue, Feb 20, 2018 at 11:45:33AM +0100, Lukáš Hrázký wrote:
> > > That tests are not enabled by default. If we enable it by default
> > > here I would expect to do the same for other Spice components.
> >
> > Ok, but I'm somewhat confused h
> On Feb 20, 2018, at 12:05 PM, Frediano Ziglio wrote:
>
>> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
>>> From: Christophe de Dinechin
>>>
>>> Signed-off-by: Christophe de Dinechin
>>> ---
>>> src/concrete-agent.cpp | 1 +
>>> 1 file changed, 1 insertion(+)
>>>
>>> diff
> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> > From: Christophe de Dinechin
> >
> > Signed-off-by: Christophe de Dinechin
> > ---
> > src/concrete-agent.cpp | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/src/concrete-agent.cpp b/src/concrete-agent.cpp
>
On Tue, Feb 20, 2018 at 11:45:33AM +0100, Lukáš Hrázký wrote:
> > That tests are not enabled by default. If we enable it by default
> > here I would expect to do the same for other Spice components.
>
> Ok, but I'm somewhat confused here. Enabling the tests is during
> packaging - you run `make ch
On Tue, 2018-02-20 at 11:34 +0100, Victor Toso wrote:
> On Tue, Feb 20, 2018 at 11:21:47AM +0100, Lukáš Hrázký wrote:
> > On Tue, 2018-02-20 at 11:02 +0100, Victor Toso wrote:
> > > IMHO, tests are a must for development and should be optional
> > > on tarballs from releases. That means that packag
On Tue, Feb 20, 2018 at 11:21:47AM +0100, Lukáš Hrázký wrote:
> On Tue, 2018-02-20 at 11:02 +0100, Victor Toso wrote:
> > IMHO, tests are a must for development and should be optional
> > on tarballs from releases. That means that packagers can
> > enable it and deal with whatever we do for testing
On Tue, 2018-02-20 at 11:02 +0100, Victor Toso wrote:
> Hi,
>
> On Tue, Feb 20, 2018 at 10:00:41AM +0100, Lukáš Hrázký wrote:
> > On Mon, 2018-02-19 at 21:19 +0200, Uri Lublin wrote:
> > > On 02/19/2018 06:47 PM, Lukáš Hrázký wrote:
> > > > On Mon, 2018-02-19 at 18:29 +0200, Uri Lublin wrote:
> >
Hi,
On Tue, Feb 20, 2018 at 10:00:41AM +0100, Lukáš Hrázký wrote:
> On Mon, 2018-02-19 at 21:19 +0200, Uri Lublin wrote:
> > On 02/19/2018 06:47 PM, Lukáš Hrázký wrote:
> > > On Mon, 2018-02-19 at 18:29 +0200, Uri Lublin wrote:
> > > > On 02/14/2018 06:37 PM, Christophe Fergeau wrote:
> > > > > On
On Tue, 2018-02-20 at 10:31 +0100, Christophe de Dinechin wrote:
> > On 20 Feb 2018, at 10:00, Lukáš Hrázký wrote:
> >
> > On Mon, 2018-02-19 at 21:19 +0200, Uri Lublin wrote:
> > > On 02/19/2018 06:47 PM, Lukáš Hrázký wrote:
> > > > On Mon, 2018-02-19 at 18:29 +0200, Uri Lublin wrote:
> > > > >
> On 20 Feb 2018, at 10:43, Lukáš Hrázký wrote:
>
> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
>> From: Christophe de Dinechin
>>
>> Signed-off-by: Christophe de Dinechin
>> ---
>> src/spice-streaming-agent.cpp | 86
>> +++
>> 1 f
On Mon, Feb 19, 2018 at 09:19:18PM +0200, Uri Lublin wrote:
> If users prefer to not run autogen.sh that's ok.
> It provides defaults options for developers.
> For example, I do not expect users to run configure with
> --enable-maintainer-mode too.
NB: My understanding of
https://blogs.gnome.org/
> On 20 Feb 2018, at 10:39, Lukáš Hrázký wrote:
>
> On Tue, 2018-02-20 at 10:18 +0100, Christophe de Dinechin wrote:
>>> On Feb 19, 2018, at 7:19 PM, Lukáš Hrázký wrote:
>>>
>>> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
From: Christophe de Dinechin
Sign
On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 86
> +++
> 1 file changed, 47 insertions(+), 39 deletions(-)
>
> diff --gi
On Tue, 2018-02-20 at 10:18 +0100, Christophe de Dinechin wrote:
> > On Feb 19, 2018, at 7:19 PM, Lukáš Hrázký wrote:
> >
> > On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> > > From: Christophe de Dinechin
> > >
> > > Signed-off-by: Christophe de Dinechin
> > > ---
> > > sr
Hi,
On Tue, Feb 20, 2018 at 11:28:47AM +0200, Snir Sheriber wrote:
> Hi,
>
> On 02/20/2018 11:20 AM, Victor Toso wrote:
> > Hi,
> >
> > On Tue, Feb 20, 2018 at 11:10:37AM +0200, Snir Sheriber wrote:
> > > Signed-off-by: Snir Sheriber
> > > ---
> > > .gitlab-ci.yml | 13 +
> > > 1
> On 20 Feb 2018, at 10:00, Lukáš Hrázký wrote:
>
> On Mon, 2018-02-19 at 21:19 +0200, Uri Lublin wrote:
>> On 02/19/2018 06:47 PM, Lukáš Hrázký wrote:
>>> On Mon, 2018-02-19 at 18:29 +0200, Uri Lublin wrote:
On 02/14/2018 06:37 PM, Christophe Fergeau wrote:
> On Wed, Feb 14, 2018 at 1
Hi,
On 02/20/2018 11:20 AM, Victor Toso wrote:
Hi,
On Tue, Feb 20, 2018 at 11:10:37AM +0200, Snir Sheriber wrote:
Signed-off-by: Snir Sheriber
---
.gitlab-ci.yml | 13 +
1 file changed, 13 insertions(+)
create mode 100644 .gitlab-ci.yml
diff --git a/.gitlab-ci.yml b/.gitlab-
Hi,
On Tue, Feb 20, 2018 at 11:10:37AM +0200, Snir Sheriber wrote:
> Signed-off-by: Snir Sheriber
> ---
> .gitlab-ci.yml | 13 +
> 1 file changed, 13 insertions(+)
> create mode 100644 .gitlab-ci.yml
>
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> new file mode 100644
> index 00
> On Feb 19, 2018, at 7:19 PM, Lukáš Hrázký wrote:
>
> On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
>> From: Christophe de Dinechin
>>
>> Signed-off-by: Christophe de Dinechin
>> ---
>> src/spice-streaming-agent.cpp | 47
>> ++-
>> 1
Signed-off-by: Snir Sheriber
---
.gitlab-ci.yml | 13 +
1 file changed, 13 insertions(+)
create mode 100644 .gitlab-ci.yml
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 000..b74e74f
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,13 @@
+image: fedora:late
On Fri, 2018-02-16 at 17:15 +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> Signed-off-by: Christophe de Dinechin
> ---
> src/spice-streaming-agent.cpp | 28 ++--
> 1 file changed, 18 insertions(+), 10 deletions(-)
>
> diff --git a/src/spice-stre
On Mon, 2018-02-19 at 21:19 +0200, Uri Lublin wrote:
> On 02/19/2018 06:47 PM, Lukáš Hrázký wrote:
> > On Mon, 2018-02-19 at 18:29 +0200, Uri Lublin wrote:
> > > On 02/14/2018 06:37 PM, Christophe Fergeau wrote:
> > > > On Wed, Feb 14, 2018 at 10:40:58AM -0500, Frediano Ziglio wrote:
> > > > > >
>
72 matches
Mail list logo