summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* server/red_channel: make MAX_SEND_VEC 100Alon Levy2011-02-071-1/+1
| | | | | | | | MAX_SEND_VEC was 100 for DisplayChannel's RedChannel implementation which is being replaced with RedChannel in red_channel. So changing from 50 to 100 in red_channel (make this configurble?) - effectively increased memory usage by: (100-50)*sizeof(iovec)*(num_of_channels-2) ==(arch 64bit) 50*16*6 ~ 5k Not terrible.
* server/red_channel: reflect SpiceDataHeader fields in handle_parsed_procAlon Levy2011-02-073-4/+4
|
* server/red_channel: add red_channel_pipe_add_pushAlon Levy2011-02-075-24/+32
|
* server/red_channel: add hold_item (from red_worker)Alon Levy2011-02-077-9/+41
| | | | | | | | | | | | | hold_item called on init_send_data, matching release. This is not the behavior of red_worker - we ref++ (==hold_item) when sending the item, and --refs when releasing it, instead of only holding if the send is blocked. Note 1: Naming: hold_pipe_item is the proc name, the variable is called hold_item, this is similar to release_item/release_pipe_item naming. Note 2: All channels have empty implementation, we later use this when red_worker get's RedChannelized.
* server/red_channel: add out_bytes_counter (unused)Alon Levy2011-02-072-0/+6
|
* client: log subject-host mismatch, and raise ssl warnings to errorsAlon Levy2011-02-071-5/+5
|
* configure.ac: use AC_LANG_SOURCE in AC_COMPILE_IFELSE, silence remaining ↵Alon Levy2011-02-071-3/+3
| | | | warnings
* server/red_worker: fix used but uninitialized warning (gcc 4.6.0)Alon Levy2011-02-071-1/+1
|
* spice-client migration: fix minor for old migration support.Uri Lublin2011-01-272-5/+5
| | | | | | | For not too old spice-migration, minor is 1. For older (ancient) spice-migration, minor is 0. Affects only VM migration while a spice client is connected.
* client/windows: don't allocate console unless requiredAlon Levy2011-01-271-9/+27
|
* client: fix broken vs2008 buildAlon Levy2011-01-274-4/+15
|
* client: --help should not need platform initializationAlon Levy2011-01-272-33/+62
| | | | | | separate initialization into before command line parsing and after, call later only if command line parsing succeeds (in particular, it "fails" if --help is given).
* demarshaller/marshaller fix gcc 4.6.0Alon Levy2011-01-252-9/+21
| | | | | | | | | | python_modules/demarshal.py and marshal.py fixes for gcc 4.6.0 warning about set but unused variables. The fixes disable creating of variables mem_size when they are not used (demarshall) and declaring a src variable when the message doesn't use it (marshal). You need to touch *.proto after applying this (should add a Makefile dependency).
* codegen: avoid creating out if not used (fix gcc 4.6.0 warning)Alon Levy2011-01-251-3/+5
|
* client: gcc 4.6.0: two more unused variable fixesAlon Levy2011-01-252-3/+0
|
* client/cegui: cegui 0.6.0 gcc 4.6.0 related fixAlon Levy2011-01-253-0/+8
| | | | | cegui doesn't include stddef required for ptrdiff_t type, we include it for it.
* client/glz_decoder.cpp: gcc 4.6.0 unused fixesAlon Levy2011-01-251-5/+0
|
* client/display_channel: gcc 4.6.0 unused fixesAlon Levy2011-01-251-6/+12
|
* common/sw_canvas: remove unused error valAlon Levy2011-01-251-2/+1
| | | | | | | | | | | This is the only unused var change I'll want to revisit eventually, I'm submitting anyway since it doesn't change current behavior. I'm talking about ignoring the return value from canvas creation. Adding a print is possible but I didn't test (may be too verbose, also preferable to be a debug print if so, and we don't have that option in the code atm - probably an environment variable will do, or adding some spice_server_set_logging_level api, maybe even spice_server_set_logging_fd?)
* common/canvas_base.c: remove unused variablesAlon Levy2011-01-251-12/+0
|
* client/server: warning fixes (gcc 4.6.0)Alon Levy2011-01-255-21/+11
| | | | | gcc 4.6.0 added "[-Werror=unused-but-set-variable]", this and the next few fixes tend to that. Mostly harmless.
* client/server: add missing USE_TUNNELAlon Levy2011-01-252-0/+6
| | | | | disable some code that only makes sense when USE_TUNNEL is defined in client and server channel security level setting.
* client/server: add missing smartchannel channel security handlingAlon Levy2011-01-252-0/+9
| | | | | The name to channel id mapping for the smartcard channel is missing, add it in client and server.
* Update license header for server/red_parse_qxl.cHans de Goede2011-01-211-6/+6
| | | | This one mistakenly had a GPL header rather then an LGPL header.
* Drop unnecessary X11 and alsa requires from spice-server.pcHans de Goede2011-01-211-3/+0
|
* server: remove dep on CEGUIHans de Goede2011-01-191-2/+0
|
* server/red_channel: fix segfault on red_channel_destroy if peer already removedAlon Levy2011-01-161-1/+1
|
* server/inputs_channel: use outgoing marshaller in red_channel/RedChannelAlon Levy2011-01-161-58/+76
|
* tests/migrate.py: add a migration testAlon Levy2011-01-151-0/+158
|
* server/main_channel: use red_channel (most code is pipe send/marshall ↵Alon Levy2011-01-151-337/+441
| | | | separation)
* server/red_channel: no need for extra loopAlon Levy2011-01-151-1/+1
|
* server/red_channel: go marshaller for outgoing (copied from red_worker)Alon Levy2011-01-132-75/+41
|
* server/reds: don't remove agent if it's not connectedAlon Levy2011-01-131-1/+1
|
* server/reds: protect reds_update_mouse_mode when main_channel is disconnectedAlon Levy2011-01-131-1/+4
|
* server/reds: don't call close on NULL channel on atexit callbackAlon Levy2011-01-131-1/+3
|
* server/reds: fix possible segfault when accessing vdagent from ↵Alon Levy2011-01-131-2/+2
| | | | reds_update_mouse_mode after vdagent set to NULL
* server/reds: s/reds_push_migrate_data_item/reds_marshall_migrate_data_item/Alon Levy2011-01-133-3/+3
|
* server: split main_channel from redsAlon Levy2011-01-135-719/+1044
|
* server: remove dep on libcacardAlon Levy2011-01-111-1/+0
| | | | | | Only the client needs this, and erronously using SPICE_REQUIRES results in libcacard dep in spice-server.pc, which is then dragged into qemu when linking, beeing used instead of the builtin libcacard.
* server/tests: split test_display_no_ssl to test_display_base, add streaming testAlon Levy2011-01-105-587/+650
|
* server/tests/test_display_no_ssl: add update_area, COPY_BITS to tested ↵Alon Levy2011-01-101-29/+163
| | | | functions, make a queue of QXLCommandExt waiting (cursor still with production at get_command)
* server/tests/test_display_no_ssl: add surface create/destroy test (commented ↵Alon Levy2011-01-101-20/+145
| | | | out), and square mode (default)
* server/tests: fix timer reset to allow setting next call during callbackAlon Levy2011-01-101-1/+1
|
* server/tests/test_display_no_ssl: change color every circleAlon Levy2011-01-101-9/+14
|
* server/tests/test_display_no_ssl: restart notify timerAlon Levy2011-01-101-1/+1
|
* server/tests: basic_event_loop: reset timer after firing itAlon Levy2011-01-101-0/+1
|
* server/tests/test_display_no_ssl: disable cursor test until it works correctlyAlon Levy2011-01-101-2/+2
|
* server/test/test_display_no_ssl: add beginning of basic cursor item test. ↵Alon Levy2011-01-101-6/+67
| | | | doesn't actually show anything on client. also, leaks.
* server/tests/test_display_no_ssl: make window 320x320, two colored updates, ↵Alon Levy2011-01-101-5/+5
| | | | one in notify batch
* server/red_worker: use 1, not 4 when lz_encoding a top down imageAlon Levy2011-01-071-2/+3
|