Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | server/red_worker: introduce an outgoing struct around out_bytes_counter | Alon Levy | 2011-02-11 | 1 | -4/+6 | |
| | ||||||
* | server/red_worker: renames to add channel_ prefix and consistent sig | Alon Levy | 2011-02-11 | 1 | -20/+21 | |
| | | | | | | | | s/disconnect_channel_proc/channel_disconnect_proc/ s/release_item_proc/channel_release_pipe_item_proc/ s/handle_message_proc/channel_handle_parsed_proc/ Adds RedChannel* channel as first parameter to hold_pipe_item_proc | |||||
* | server/red_worker: split cursor_channel_send_item | Alon Levy | 2011-02-11 | 1 | -42/+45 | |
| | | | | Split from cursor_channel_push | |||||
* | server/red_worker: use red_channel begin_send_message | Alon Levy | 2011-02-11 | 1 | -12/+12 | |
| | | | | s/red_begin_send_message/red_channel_begin_send_message/ | |||||
* | server/red_worker: add red_channel_init_send_data | Alon Levy | 2011-02-11 | 1 | -87/+84 | |
| | | | | | Changes semantics of send to always hold/release regardless of block, like red_channel. A hold is just a reference count increment or nop. | |||||
* | server/red_worker: split display_channel_send_item | Alon Levy | 2011-02-11 | 1 | -88/+94 | |
| | | | | Split it out of display_channel_push. | |||||
* | server/red_worker: extract common_release_pipe_item from red_pipe_clear | Alon Levy | 2011-02-11 | 1 | -50/+56 | |
| | ||||||
* | server/red_worker: use red_channel pipe add versions | Alon Levy | 2011-02-11 | 1 | -16/+16 | |
| | | | | | s/red_pipe_add/red_channel_pipe_add/ s/red_pipe_add_after/red_channel_pipe_add_after/ | |||||
* | server/red_worker: shorten some lines using alias variables | Alon Levy | 2011-02-11 | 1 | -15/+23 | |
| | ||||||
* | server/red_worker: introduce CommonChannel | Alon Levy | 2011-02-11 | 3 | -182/+222 | |
| | | | | | | | with everything (almost) not in red_channel's RedChannel As a result of CommonChannel a free cb is added to EventHandler, to take care of non zero offset for embedded EventHandler. | |||||
* | server/red_worker: use ack_data struct | Alon Levy | 2011-02-11 | 1 | -18/+20 | |
| | | | | start of move to red_channel based channels | |||||
* | server/red_worker: change hold_item sig, drop the void* | Alon Levy | 2011-02-11 | 1 | -4/+4 | |
| | | | | changed to PipeItem * | |||||
* | server/smartcard: don't push our own error on reader add | Alon Levy | 2011-02-09 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | The device already sends one. There are actually two connections going on: server to client - this is the smartcard channel, it reuses the VSC protocol. server to device - this is an internal connection using VSC too. We generally just passthrough all messages from the client to the device, and from the device to the client. We only rewrite the reader_id because the device knows about a single id (it is actually a card id), and we may manage more then one in the future. Bottom line is that there was an extra VSC_Error message reaching the client. | |||||
* | server/smartcard: ignore VSC_Init from client | Alon Levy | 2011-02-07 | 1 | -0/+3 | |
| | ||||||
* | server/smartcard: print instead of assert on bad reader_id in ↵ | Alon Levy | 2011-02-07 | 1 | -1/+3 | |
| | | | | smartcard_char_device_on_message_from_device | |||||
* | server/smartcard: libcacard uses network byte order, so we must too | Alon Levy | 2011-02-07 | 1 | -6/+19 | |
| | ||||||
* | server/smartcard: libcacard removed ReaderAddResponse | Alon Levy | 2011-02-07 | 1 | -42/+4 | |
| | ||||||
* | server/smartcard: s/reader_id_t/uint32_t/ (libcacard changed) | Alon Levy | 2011-02-07 | 1 | -6/+6 | |
| | ||||||
* | server/red_channel: style fix in red_channel_init_send_data | Alon Levy | 2011-02-07 | 1 | -2/+2 | |
| | ||||||
* | server/red_channel: red_channel_pipe_clear: assert on NULL channel | Alon Levy | 2011-02-07 | 1 | -1/+2 | |
| | ||||||
* | server/red_channel: add TODO | Alon Levy | 2011-02-07 | 1 | -0/+4 | |
| | ||||||
* | server/red_channel: export red_channel_send | Alon Levy | 2011-02-07 | 2 | -1/+2 | |
| | ||||||
* | server/red_channel: add red_channel_waiting_for_ack | Alon Levy | 2011-02-07 | 1 | -4/+7 | |
| | | | | small inline function to have the ack window logic. | |||||
* | server/red_channel: protect red_channel_push from NULL | Alon Levy | 2011-02-07 | 1 | -0/+4 | |
| | ||||||
* | server/red_channel: reset pipe_size on clear (from red_worker) | Alon Levy | 2011-02-07 | 1 | -0/+1 | |
| | ||||||
* | server/red_channel: red_channel_event: push on blocked | Alon Levy | 2011-02-07 | 1 | -1/+6 | |
| | | | | | | | try to push either on signal (write available) or when blocked and read signaled. From red_worker, copied for compatibility when switching later to RedChannel in red_worker. Doesn't make a lot of sense (but works), see comment in patch. | |||||
* | server/red_channel: use red_channel_receive | Alon Levy | 2011-02-07 | 1 | -1/+1 | |
| | ||||||
* | server/red_channel: add empty handle of SPICE_MSGC_DISCONNECTING | Alon Levy | 2011-02-07 | 1 | -0/+2 | |
| | | | | Simply ignored in red_channel_handle_message | |||||
* | server/red_channel: add red_channel_receive (for red_worker) | Alon Levy | 2011-02-07 | 2 | -0/+13 | |
| | ||||||
* | server/red_channel: unstatic red_channel_pipe_clear (for red_worker) | Alon Levy | 2011-02-07 | 2 | -2/+5 | |
| | ||||||
* | server/red_channel: unstatic red_channel_push (for red_worker) | Alon Levy | 2011-02-07 | 2 | -2/+7 | |
| | ||||||
* | server/red_channel: two 80 column fixes | Alon Levy | 2011-02-07 | 1 | -4/+6 | |
| | ||||||
* | server/red_channel: add public red_channel_default_peer_on_error | Alon Levy | 2011-02-07 | 2 | -5/+5 | |
| | | | | for later use in red_worker | |||||
* | server/red_channel: add red_channel_pipe_add_after (from red_worker) | Alon Levy | 2011-02-07 | 2 | -0/+11 | |
| | ||||||
* | server/red_channel: make client ack window configurable | Alon Levy | 2011-02-07 | 2 | -2/+5 | |
| | | | | from red_worker | |||||
* | server/red_channel (tunnel): change sig of red_channel_handle_message | Alon Levy | 2011-02-07 | 3 | -8/+11 | |
| | | | | for later usage with red_worker | |||||
* | server/red_channel: make MAX_SEND_VEC 100 | Alon Levy | 2011-02-07 | 1 | -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_proc | Alon Levy | 2011-02-07 | 3 | -4/+4 | |
| | ||||||
* | server/red_channel: add red_channel_pipe_add_push | Alon Levy | 2011-02-07 | 5 | -24/+32 | |
| | ||||||
* | server/red_channel: add hold_item (from red_worker) | Alon Levy | 2011-02-07 | 7 | -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 Levy | 2011-02-07 | 2 | -0/+6 | |
| | ||||||
* | server/red_worker: fix used but uninitialized warning (gcc 4.6.0) | Alon Levy | 2011-02-07 | 1 | -1/+1 | |
| | ||||||
* | client/server: warning fixes (gcc 4.6.0) | Alon Levy | 2011-01-25 | 4 | -19/+6 | |
| | | | | | 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_TUNNEL | Alon Levy | 2011-01-25 | 1 | -0/+2 | |
| | | | | | 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 handling | Alon Levy | 2011-01-25 | 1 | -0/+3 | |
| | | | | | 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.c | Hans de Goede | 2011-01-21 | 1 | -6/+6 | |
| | | | | This one mistakenly had a GPL header rather then an LGPL header. | |||||
* | server/red_channel: fix segfault on red_channel_destroy if peer already removed | Alon Levy | 2011-01-16 | 1 | -1/+1 | |
| | ||||||
* | server/inputs_channel: use outgoing marshaller in red_channel/RedChannel | Alon Levy | 2011-01-16 | 1 | -58/+76 | |
| | ||||||
* | server/main_channel: use red_channel (most code is pipe send/marshall ↵ | Alon Levy | 2011-01-15 | 1 | -337/+441 | |
| | | | | separation) | |||||
* | server/red_channel: no need for extra loop | Alon Levy | 2011-01-15 | 1 | -1/+1 | |
| |