- Jan 16, 2019
-
-
Lukáš Hrázký authored
The message contains information about the graphics device and monitor belonging to a particular video stream (which maps to a channel) from the streaming agent. Signed-off-by: Lukáš Hrázký <lhrazky@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
Lukáš Hrázký authored
The message serves for passing the device address and device display ID information for all display channels from SPICE server to the vd_agent. Signed-off-by: Lukáš Hrázký <lhrazky@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- Jan 02, 2019
-
-
Frediano Ziglio authored
This file was used by the old client to hold return error codes. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Snir Sheriber <ssheribe@redhat.com>
-
- Sep 26, 2018
-
-
Eduardo Lima (Etrunko) authored
This is required in the case another project uses this one as a subproject Signed-off-by: Eduardo Lima (Etrunko) <etrunko@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
-
- Jul 11, 2018
-
-
Frediano Ziglio authored
This avoids compilers detect misaligned access which can lead to warnings. In QEMU the structure is allocated at the beginning of a 4Kb page, in Xspice is allocated with a calloc, so the structure will end up 4 bytes aligned as well with these users. We are not aware of other users of QXLRam, but if there was, it's likely the struct would be at least naturally aligned, so this change should not impact anyone. Aligning to 4 bytes maintains the size of the structure unchanged avoiding possible ABI changes. clang currently generates an invalid function call if a misaligned 4 byte atomic operation is detected. This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1565766 Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
-
- Jun 21, 2018
-
-
This was done for configure.ac earlier, but is missing in meson.build Signed-off-by: Christophe Fergeau <cfergeau@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
Frediano Ziglio authored
extrenal -> external Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
-
- Jun 19, 2018
-
-
Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- Jun 01, 2018
-
-
Victor Toso authored
Signed-off-by: Victor Toso <victortoso@redhat.com>
-
Victor Toso authored
Signed-off-by: Victor Toso <victortoso@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- May 31, 2018
-
-
Frediano Ziglio authored
According to C standard the size of a structure without fields is not defined (see https://stackoverflow.com/questions/21851930/size-of-empty-structure-in-c-and-c ). As we almost only use GCC currently these structures are of size 0. This can became a problem if 2 sides talking a given protocol use these structures. To avoid such possible mismatch (for instance having one side C and the other C++ which defines these structures as having 1 as size) add an empty (0-size array) field. Although a 0-size array is not considered also that portable we use extensively this feature with different compilers never encountering issues. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Uri Lublin <uril@redhat.com>
-
- May 08, 2018
-
-
Frediano Ziglio authored
These files were added in 2010. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
-
Signed-off-by: Eduardo Lima (Etrunko) <etrunko@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- May 05, 2018
-
-
This definition is lacking in client while in server it is hardcoded to 50. Having a well defined limitation allow us to make the code more robust and optimized. Signed-off-by: Victor Toso <victortoso@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- Apr 11, 2018
-
-
Frediano Ziglio authored
This will allow to define new capabilities. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe de Dinechin <dinechin@redhat.com>
-
- Apr 05, 2018
-
-
Lukáš Hrázký authored
It is a duplicate information in a place where it is not necessary and of little value. Signed-off-by: Lukáš Hrázký <lhrazky@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- Mar 10, 2018
-
-
Frediano Ziglio authored
Depending on how structures are initialised in the code is possible that implicit padding bytes are not initialised causing possible information leaks as the entire structure with all padding is sent through device/network. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe de Dinechin <dinechin@redhat.com>
-
- Mar 09, 2018
-
-
Frediano Ziglio authored
Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
-
Frediano Ziglio authored
GCC introduced __builtin_bswapXX intrinsics in a quite old version. As version 2 and 3 are no more used nowadays instead of manually craft these functions using assembly language use the new built-ins. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
-
- Dec 01, 2017
-
-
Frediano Ziglio authored
This flag will allow the client to perform some optimisations on output and buffering processing. Old clients will ignore this additional flag. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
-
- Nov 09, 2017
-
-
Jonathon Jongsma authored
Clarify that this value specifies the size in bytes, not the number of capabilities. Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- Nov 01, 2017
-
-
Jonathon Jongsma authored
This message is specified to have a size limit of 1024, so provide this as a #define Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com> Acked-by: Christophe de Dinechin <dinechin@redhat.com>
-
- Sep 15, 2017
-
-
Frediano Ziglio authored
Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe de Dinechin <cdupontd@redhat.com>
-
Frediano Ziglio authored
This allows to better support client mouse using streaming device Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe de Dinechin <cdupontd@redhat.com>
-
Frediano Ziglio authored
Acked-by: Christophe de Dinechin <cdupontd@redhat.com>
-
Frediano Ziglio authored
Allows server to tell codec and start/stop the streaming Acked-by: Christophe de Dinechin <cdupontd@redhat.com>
-
Frediano Ziglio authored
This protocol allows a guest to send a video stream to the server. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe de Dinechin <cdupontd@redhat.com>
-
A three-time typo, obviously :) Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
Elbrus 2000 is a little-endian architecture. Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- Jul 03, 2017
-
-
Marc-André Lureau authored
-
Marc-André Lureau authored
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
-
- Jun 20, 2017
-
-
Jakub Janků authored
Introduce new error statuses to report more info to clients: VD_AGENT_FILE_XFER_STATUS_SESSION_LOCKED, VD_AGENT_FILE_XFER_STATUS_VDAGENT_NOT_CONNECTED, VD_AGENT_FILE_XFER_STATUS_DISABLED These are only sent to clients that feature VD_AGENT_CAP_FILE_XFER_DETAILED_ERRORS capability. Acked-by: Pavel Grunt <pgrunt@redhat.com>
-
- May 31, 2017
-
-
Jakub Janků authored
Agent can send VDAgentFileXferStatusMessage with result VD_AGENT_FILE_XFER_STATUS_NOT_ENOUGH_SPACE to indicate lack of free space. This enables more detailed error reporting, so the user knows why the file transfer has failed. Add VD_AGENT_CAP_FILE_XFER_DETAILED_ERRORS to ensure detailed errors are not sent to clients that do not support it. This can be used with more file xfer errors in the future. Acked-by: Pavel Grunt <pgrunt@redhat.com>
-
- May 08, 2017
-
-
Frediano Ziglio authored
This allows the header to be used in no GPL programs. Others headers are already MIT licensed so this change do not require additional changes to already existing programs. The file can be generated with ./spice_codegen.py -e spice.proto --license MIT enums.h from spice-common. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Pavel Grunt <pgrunt@redhat.com>
-
- Mar 10, 2017
-
-
Pavel Grunt authored
Server can set it to indicate that it discards file transfer messages. Related: https://bugzilla.redhat.com/show_bug.cgi?id=1373725 Acked-by: Victor Toso <victortoso@redhat.com>
-
- Mar 03, 2017
-
-
Related: https://bugzilla.redhat.com/show_bug.cgi?id=1373725 Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- Jan 31, 2017
-
-
Frediano Ziglio authored
Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
-
- Jan 06, 2017
-
-
Client might want to choose a preferred video codec for streaming for different reasons which having hardware decoder support being the most interest one. This message allows the client to send a list of video codecs in a order of preference. Signed-off-by: Victor Toso <victortoso@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-
- Nov 23, 2016
-
-
Based on the G_DEPRECATED GLib macro. For projects that don't use GLib. Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
-
This gains us automatic support for whichever compilers GLib supports in this macro when used in projects that use GLib. Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
-