summaryrefslogtreecommitdiffstats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
* spice: client: fix handling of top down images in video streams (#576151)spice-client-0.4.2-5.el6Alon Levy2010-03-231-9/+5
| | | | | | | | | | | | Rebased from RHEL-5: commit de3460c93c941a4456f932a630ca78b73f323b09 Author: Yonit Halperin <yhalperi@redhat.com> Date: Mon Jan 18 13:15:16 2010 +0200 spice: client: fix handling of top down images in video streams (556741) Top down streams arrive from x11-qxl driver.
* new migration process #576029 #576031 #576033spice-server-0.4.2-5.el6spice-common-0.4.2-4.el6spice-client-0.4.2-4.el6Yonit Halperin2010-03-234-3/+104
| | | | | | | - the server acquires the target info from a dedicated Qemu command - when migration ends, the client receieves a new message RED_MIGRATE_SWITCH_HOST - client then disconnects from the source and connects to the target. The connection to the target is entirely new.
* Only use AI_ADDRCONF if availible #566444spice-client-0.4.2-3.el6Alexander Larsson2010-03-181-1/+4
| | | | AI_ADDRCONF not availible on winXP, so this fixes windows build.
* spice client: add ipv6 support. #566444Gerd Hoffmann2010-03-182-53/+41
| | | | Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
* spice client: fix dns lookup #566444Gerd Hoffmann2010-03-181-3/+9
| | | | | | ignore lookup results which are not ipv4 Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
* client: add command line support for ciphers, ca file, and host certificate ↵spice-client-0.4.2-2.el6Yonit Halperin2010-03-147-10/+116
| | | | subject #573371
* spice: Adding README to all subdirsUri Lublin2010-01-141-0/+12
| | | | | | | Also adding some information to toplevel (spice) README And do not touch README when running autogen.sh Signed-off-by: Uri Lublin <uril@redhat.com>
* change version to 0.4.2Yaniv Kamay2010-01-102-5/+5
|
* spice: config: Add DISTRIBUTION and PATCHID to configure summaryUri Lublin2010-01-101-1/+1
| | | | Signed-off-by: Uri Lublin <uril@redhat.com>
* spice: add COPYING file to all subdirs (subdir config)Uri Lublin2010-01-101-0/+340
| | | | | | GPL2 Signed-off-by: Uri Lublin <uril@redhat.com>
* add patch id and distro name to version stringYaniv Kamay2010-01-101-2/+18
|
* spice: autogen.sh: call autogen.sh.shared separately from subdirs (subdir ↵Uri Lublin2010-01-102-1/+2
| | | | | | | | | | | | | | config) Move original autogen.sh to autogen.sh.shared Create links in each subdir (subdir/autogen.sh --> ../autogem.sh.shared) Make new autogen.sh which simply 1. cd subdir && ./autogen.sh 2. run autogen.sh.shared for the current dir (spice) Update all Makefile.am accordingly (dist-hook). Signed-off-by: Yaniv Kamay <ykamay@rehdat.com> Signed-off-by: Uri Lublin <uril@redhat.com>
* spice: configure: mv ffmpeg_inc.h.in from common/ to client/Uri Lublin2010-01-105-3/+21
| | | | | | | | | | | Moved common/win/ffmpeg_inc.h to client/windows/ Moved common/linux/ffmpeg_inc.h.in to client/x11/ Copied common/linux/ffmpeg_inc.h.in to server/ Update *configure.ac and */Makefile.am accordingly (* is for {common,server,client} Signed-off-by: Yaniv Kamay <ykamay@rehdat.com> Signed-off-by: Uri Lublin <uril@redhat.com>
* client/x11/Makefile.am: make CLIENT_DIR $(top_srcdir) instead of ..Uri Lublin2010-01-101-1/+1
| | | | | | | Enables out-of-directory configure & compile Signed-off-by: Yaniv Kamay <ykamay@rehdat.com> Signed-off-by: Uri Lublin <uril@redhat.com>
* spice: subdirs: support ./autogen.sh in a "make dist" tarball (subdir config)Uri Lublin2010-01-103-1/+5
| | | | | | | | | | | | Each subdir (common, client and server) can "make dist". This commit adds configure.ac.shared and autogen.sh to the tar file. Above files are copied from .. (spice/ directory) Also added configure.ac.shared (which is not part of "distribution" tarball) that only imports ../configure.ac.shared such that ./autogen.sh still works (on "git directories"). Signed-off-by: Uri Lublin <uril@redhat.com>
* spice: client: Makefile.am: add missing files to file-list (subdir config)Uri Lublin2010-01-102-0/+8
| | | | | | | | | | | | | | | | | | The follwing files exist in client directory but not in RED_COMMON_SRCS, thus they are not part of distribution tarball (make dist). Adding them fixes building the spice client out of a distribution tarball. Those files are: icon.h process_loop.h red_gdi_canvas.cpp red_gdi_canvas.h red_pixmap_gdi.h gdi_canvas.cpp Similarly, the following files were added to spicec_SOURCES in client/x11/Makefile.am: event_sources_p.h
* client: remove '../common' from #include directive (subdir config)Uri Lublin2010-01-109-9/+9
| | | | | | | | | We compile with -I$(COMMON_DIR) (which currently is ../common), so there is no need for that. Later we would like to be able to have a different COMMON_DIR. Signed-off-by: Uri Lublin <uril@redhat.com>
* Add client/configure.ac (subdir config)Uri Lublin2010-01-101-0/+78
| | | | | | Enables running ./configure in client/ (as well as autoreconf or autogen.sh) Signed-off-by: Uri Lublin <uril@redhat.com>
* configure.ac: client: replace $(top_srcdir) in x11/Makefile.am (subdir config)Uri Lublin2010-01-101-74/+77
| | | | | | | | | | Replace all "$(top_srcdir)/common" with "$(SPICE_COMMON_DIR)" and all "$(top_srcdir)/client" with ".." (relative to x11) This would (after following patches) enables building the client from either spice/ (top directory) or spice/client. Signed-off-by: Uri Lublin <uril@redhat.com>
* client: add Platform::term_printfYaniv Kamay2010-01-107-71/+133
| | | | | | Platform::term_printf is a variant of printf that on windows dynamically opens console in order to have visible output during command line processing.
* client: fix logger init mix-upYaniv Kamay2010-01-103-24/+13
| | | | | enable log rotate in case RED_DEBUG is not defined and disable log rotate in case RED_DEBUG is defined
* client: move log file to spicec appdata dirYaniv Kamay2010-01-104-14/+49
|
* spice: menu additonsArnon Gilboa2010-01-073-18/+68
| | | | | | -functions: set_name, remove_command, remove_sub, clear -item state & enum -add state support in RedWindow insert_command & insert_menu
* spice: add missing breakArnon Gilboa2010-01-061-0/+1
|
* server,client: server authentication for secured channels. #527411 #549673.Yonit Halperin2010-01-0611-41/+518
| | | | | | | | | 3 available mechanisms: by public key, by host name, and by certificate subject name. In the former method, chain of trust verification is not performed. The CA certificate files are looked for under <spice-config-dir>/spice_truststore.pem windows <spice-config-dir>=%APPDATA%\spicec\ linux <spice-config-dir>=$HOME/.spicec
* client: use spice icon instead-of solidice iconYaniv Kamay2010-01-045-188/+273
|
* client: restore gl_fbo and gl_pbuff canavas type optionsYaniv Kamay2010-01-031-0/+4
|
* spice: position mouse in primary monitor center after full screen toggleArnon Gilboa2010-01-0310-73/+123
| | | | | | | -move _focused & _pointer_in_window from RedWindow to RedWindow_p's -move shadow focus & cursor handling to sync() -add reset_cursor_pos() to Platform -Monitor set_mode()/restore() use virtual do_set_mode()/do_restore()
* spice: on_activate_screen generates on_key_down for any modifier pressedArnon Gilboa2010-01-035-48/+66
| | | | | | -call SetWindowsHookEx(WH_KEYBOARD_LL, LowLevelKeyboardProc...) only once, in RedWindow::init() -add Application::cleanup_globals() & RedWindow::cleanup() -cleanup LowLevelKeyboardProc()
* win client: change avcodec version to 51Yaniv Kamay2010-01-031-2/+2
|
* client: new static title imageYaniv Kamay2010-01-032-610/+389
|
* spice: fix ssl compiling errorsIzik Eidus2010-01-031-0/+4
| | | | | | (openssl api was changed, so lets have ifdef to compile in all cases) Signed-off-by: Izik Eidus <ieidus@redhat.com>
* spice: client: add checks to see if it is safe to use XShem.Izik Eidus2010-01-033-3/+25
| | | | | | | | Beacuse that XShem internal checks wont fail when using the spice client from remote, we are adding check on the socket family to see if it is unix domain socket and fail in case it is not. Signed-off-by: Izik Eidus <ieidus@redhat.com>
* add missing alt_image.c to Makefile.amYaniv Kamay2010-01-031-0/+2
|
* spice: pass modifiers stroke events down the hook chainArnon Gilboa2010-01-031-5/+13
|
* spice: add [pid:tid] to log linesArnon Gilboa2010-01-034-4/+31
|
* spice: on toggle_full_screen, generate on_key_down if shift is still pressedArnon Gilboa2010-01-035-8/+74
|
* spice: show splash screen on disconnect only on debugArnon Gilboa2010-01-031-2/+4
|
* client: change jitter buffer size to 300msYaniv Kamay2010-01-032-3/+6
|
* spice client: sticky Alt activation when holding an Alt keyYonit Halperin2010-01-0315-85/+1223
| | | | | | | | | | | Additional changes that were required for the feature: 1) focusing on the pointed window in full screen mode 2) In X11 - handling events that occur during keyboard ungrabbing 3) In X11 - handling Leave/Enter Notify events that occur during keyboard grabbing/ungrabbing 4) In X11 - fix for focus events that are handled in the wrong order (happens when focus events occur during grabbing the keyboard) 5) In X11 - ignoring key release events during key holding 6) In Windows - synchronizing keyboard release events that occured during a modal loop
* spice: client: gl: fix glx support.Izik Eidus2010-01-031-2/+14
| | | | | | | Just move around touch_context and untouch_context to be at the right places. Signed-off-by: Izik Eidus <ieidus@redhat.com>
* client: fix colormap handling.Izik Eidus2010-01-033-8/+5
| | | | Signed-off-by: Izik Eidus <ieidus@redhat.com>
* spice client: calling the timers during modal loop in WindowsYonit Halperin2010-01-035-0/+75
|
* spice client: fixed missing AutoRefYonit Halperin2010-01-031-1/+2
|
* spice client: remove timer interface from platform - use Application (via ↵Yonit Halperin2010-01-039-191/+86
| | | | ProcessLoop interface).
* spice client: cosmetic changesYonit Halperin2010-01-0311-28/+37
|
* spice client: Transfer all channels run loop from EventsLoop class to ↵Yonit Halperin2010-01-0323-746/+45
| | | | ProcessLoop class
* spice client: creating a general process loop.Yonit Halperin2010-01-0331-725/+1678
| | | | | | | | | | | The process loop is responsible for: 1) waiting for events 2) timers 3) events queue for actions that should be performed in the context of the thread and are pushed from other threads. The benefits: 1) remove duplicity: till now, there was one implementaion of events loop for the channels and another one for the main thread. 2) timers can be executed on each thread and not only on the main thread. 3) events can be pushed to each thread and not only to the main thread. In this commit, only the main thread was modified to use the new process loop.
* move to intermediate version 0.4.1Yaniv Kamay2009-12-301-4/+4
|
* change version to 0.4.0Yaniv Kamay2009-10-271-6/+6
|