mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-08-06 18:52:33 +00:00
Use bool rather than int return values when appropriate
This commit changes all functions returning TRUE/FALSE from having an 'int' return value to 'bool'. This way it's obvious that such a function is not going to return anything else than TRUE or FALSE. Signed-off-by: Christophe Fergeau <cfergeau@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
This commit is contained in:
parent
972cbdcfd9
commit
6377b72d44
@ -306,7 +306,7 @@ static void red_char_device_send_msg_to_clients(RedCharDevice *dev,
|
||||
}
|
||||
}
|
||||
|
||||
static int red_char_device_read_from_device(RedCharDevice *dev)
|
||||
static bool red_char_device_read_from_device(RedCharDevice *dev)
|
||||
{
|
||||
uint64_t max_send_tokens;
|
||||
int did_read = FALSE;
|
||||
@ -720,13 +720,13 @@ static RedCharDeviceClient *red_char_device_client_new(RedClient *client,
|
||||
return dev_client;
|
||||
}
|
||||
|
||||
int red_char_device_client_add(RedCharDevice *dev,
|
||||
RedClient *client,
|
||||
int do_flow_control,
|
||||
uint32_t max_send_queue_size,
|
||||
uint32_t num_client_tokens,
|
||||
uint32_t num_send_tokens,
|
||||
int wait_for_migrate_data)
|
||||
bool red_char_device_client_add(RedCharDevice *dev,
|
||||
RedClient *client,
|
||||
int do_flow_control,
|
||||
uint32_t max_send_queue_size,
|
||||
uint32_t num_client_tokens,
|
||||
uint32_t num_send_tokens,
|
||||
int wait_for_migrate_data)
|
||||
{
|
||||
RedCharDeviceClient *dev_client;
|
||||
|
||||
@ -921,8 +921,8 @@ void red_char_device_migrate_data_marshall(RedCharDevice *dev,
|
||||
dev, *write_to_dev_size_ptr, *write_to_dev_tokens_ptr);
|
||||
}
|
||||
|
||||
int red_char_device_restore(RedCharDevice *dev,
|
||||
SpiceMigrateDataCharDevice *mig_data)
|
||||
bool red_char_device_restore(RedCharDevice *dev,
|
||||
SpiceMigrateDataCharDevice *mig_data)
|
||||
{
|
||||
RedCharDeviceClient *dev_client;
|
||||
uint32_t client_tokens_window;
|
||||
|
||||
@ -166,8 +166,8 @@ void red_char_device_migrate_data_marshall(RedCharDevice *dev,
|
||||
SpiceMarshaller *m);
|
||||
void red_char_device_migrate_data_marshall_empty(SpiceMarshaller *m);
|
||||
|
||||
int red_char_device_restore(RedCharDevice *dev,
|
||||
SpiceMigrateDataCharDevice *mig_data);
|
||||
bool red_char_device_restore(RedCharDevice *dev,
|
||||
SpiceMigrateDataCharDevice *mig_data);
|
||||
|
||||
/*
|
||||
* Resets write/read queues, and moves that state to being stopped.
|
||||
@ -186,13 +186,13 @@ void red_char_device_reset(RedCharDevice *dev);
|
||||
|
||||
/* max_send_queue_size = how many messages we can read from the device and enqueue for this client,
|
||||
* when we have tokens for other clients and no tokens for this one */
|
||||
int red_char_device_client_add(RedCharDevice *dev,
|
||||
RedClient *client,
|
||||
int do_flow_control,
|
||||
uint32_t max_send_queue_size,
|
||||
uint32_t num_client_tokens,
|
||||
uint32_t num_send_tokens,
|
||||
int wait_for_migrate_data);
|
||||
bool red_char_device_client_add(RedCharDevice *dev,
|
||||
RedClient *client,
|
||||
int do_flow_control,
|
||||
uint32_t max_send_queue_size,
|
||||
uint32_t num_client_tokens,
|
||||
uint32_t num_send_tokens,
|
||||
int wait_for_migrate_data);
|
||||
|
||||
void red_char_device_client_remove(RedCharDevice *dev,
|
||||
RedClient *client);
|
||||
|
||||
@ -120,7 +120,7 @@ common_graphics_channel_set_property(GObject *object,
|
||||
}
|
||||
}
|
||||
|
||||
int common_channel_client_config_socket(RedChannelClient *rcc)
|
||||
bool common_channel_client_config_socket(RedChannelClient *rcc)
|
||||
{
|
||||
RedClient *client = red_channel_client_get_client(rcc);
|
||||
MainChannelClient *mcc = red_client_get_main(client);
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
int common_channel_client_config_socket(RedChannelClient *rcc);
|
||||
bool common_channel_client_config_socket(RedChannelClient *rcc);
|
||||
|
||||
#define COMMON_CLIENT_TIMEOUT (NSEC_PER_SEC * 30)
|
||||
|
||||
|
||||
@ -85,8 +85,8 @@ static int dcc_pixmap_cache_hit(DisplayChannelClient *dcc, uint64_t id, int *los
|
||||
}
|
||||
|
||||
/* set area=NULL for testing the whole surface */
|
||||
static int is_surface_area_lossy(DisplayChannelClient *dcc, uint32_t surface_id,
|
||||
const SpiceRect *area, SpiceRect *out_lossy_area)
|
||||
static bool is_surface_area_lossy(DisplayChannelClient *dcc, uint32_t surface_id,
|
||||
const SpiceRect *area, SpiceRect *out_lossy_area)
|
||||
{
|
||||
RedSurface *surface;
|
||||
QRegion *surface_lossy_region;
|
||||
@ -127,8 +127,8 @@ static int is_surface_area_lossy(DisplayChannelClient *dcc, uint32_t surface_id,
|
||||
to the client, returns false. "area" is for surfaces. If area = NULL,
|
||||
all the surface is considered. out_lossy_data will hold info about the bitmap, and its lossy
|
||||
area in case it is lossy and part of a surface. */
|
||||
static int is_bitmap_lossy(RedChannelClient *rcc, SpiceImage *image, SpiceRect *area,
|
||||
BitmapData *out_data)
|
||||
static bool is_bitmap_lossy(RedChannelClient *rcc, SpiceImage *image, SpiceRect *area,
|
||||
BitmapData *out_data)
|
||||
{
|
||||
DisplayChannelClient *dcc = DISPLAY_CHANNEL_CLIENT(rcc);
|
||||
|
||||
@ -163,8 +163,8 @@ static int is_bitmap_lossy(RedChannelClient *rcc, SpiceImage *image, SpiceRect *
|
||||
area, &out_data->lossy_rect);
|
||||
}
|
||||
|
||||
static int is_brush_lossy(RedChannelClient *rcc, SpiceBrush *brush,
|
||||
BitmapData *out_data)
|
||||
static bool is_brush_lossy(RedChannelClient *rcc, SpiceBrush *brush,
|
||||
BitmapData *out_data)
|
||||
{
|
||||
if (brush->type == SPICE_BRUSH_TYPE_PATTERN) {
|
||||
return is_bitmap_lossy(rcc, brush->u.pattern.pat, NULL,
|
||||
@ -607,9 +607,9 @@ static void surface_lossy_region_update(DisplayChannelClient *dcc,
|
||||
}
|
||||
}
|
||||
|
||||
static int drawable_intersects_with_areas(Drawable *drawable, int surface_ids[],
|
||||
SpiceRect *surface_areas[],
|
||||
int num_surfaces)
|
||||
static bool drawable_intersects_with_areas(Drawable *drawable, int surface_ids[],
|
||||
SpiceRect *surface_areas[],
|
||||
int num_surfaces)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < num_surfaces; i++) {
|
||||
@ -622,10 +622,10 @@ static int drawable_intersects_with_areas(Drawable *drawable, int surface_ids[],
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static int pipe_rendered_drawables_intersect_with_areas(DisplayChannelClient *dcc,
|
||||
int surface_ids[],
|
||||
SpiceRect *surface_areas[],
|
||||
int num_surfaces)
|
||||
static bool pipe_rendered_drawables_intersect_with_areas(DisplayChannelClient *dcc,
|
||||
int surface_ids[],
|
||||
SpiceRect *surface_areas[],
|
||||
int num_surfaces)
|
||||
{
|
||||
GList *l;
|
||||
|
||||
@ -650,8 +650,8 @@ static int pipe_rendered_drawables_intersect_with_areas(DisplayChannelClient *dc
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static int drawable_depends_on_areas(Drawable *drawable, int surface_ids[],
|
||||
SpiceRect surface_areas[], int num_surfaces)
|
||||
static bool drawable_depends_on_areas(Drawable *drawable, int surface_ids[],
|
||||
SpiceRect surface_areas[], int num_surfaces)
|
||||
{
|
||||
int i;
|
||||
RedDrawable *red_drawable;
|
||||
@ -1680,9 +1680,9 @@ static void red_release_video_encoder_buffer(uint8_t *data, void *opaque)
|
||||
buffer->free(buffer);
|
||||
}
|
||||
|
||||
static int red_marshall_stream_data(RedChannelClient *rcc,
|
||||
SpiceMarshaller *base_marshaller,
|
||||
Drawable *drawable)
|
||||
static bool red_marshall_stream_data(RedChannelClient *rcc,
|
||||
SpiceMarshaller *base_marshaller,
|
||||
Drawable *drawable)
|
||||
{
|
||||
DisplayChannelClient *dcc = DISPLAY_CHANNEL_CLIENT(rcc);
|
||||
DisplayChannel *display = DCC_TO_DC(dcc);
|
||||
|
||||
43
server/dcc.c
43
server/dcc.c
@ -41,7 +41,7 @@ enum
|
||||
};
|
||||
|
||||
static void on_display_video_codecs_update(GObject *gobject, GParamSpec *pspec, gpointer user_data);
|
||||
static int dcc_config_socket(RedChannelClient *rcc);
|
||||
static bool dcc_config_socket(RedChannelClient *rcc);
|
||||
|
||||
static void
|
||||
display_channel_client_get_property(GObject *object,
|
||||
@ -204,7 +204,7 @@ static RedSurfaceCreateItem *red_surface_create_item_new(RedChannel* channel,
|
||||
return create;
|
||||
}
|
||||
|
||||
int dcc_drawable_is_in_pipe(DisplayChannelClient *dcc, Drawable *drawable)
|
||||
bool dcc_drawable_is_in_pipe(DisplayChannelClient *dcc, Drawable *drawable)
|
||||
{
|
||||
RedDrawablePipeItem *dpi;
|
||||
GList *l;
|
||||
@ -223,8 +223,8 @@ int dcc_drawable_is_in_pipe(DisplayChannelClient *dcc, Drawable *drawable)
|
||||
* Return: TRUE if wait_if_used == FALSE, or otherwise, if all of the pipe items that
|
||||
* are related to the surface have been cleared (or sent) from the pipe.
|
||||
*/
|
||||
int dcc_clear_surface_drawables_from_pipe(DisplayChannelClient *dcc, int surface_id,
|
||||
int wait_if_used)
|
||||
bool dcc_clear_surface_drawables_from_pipe(DisplayChannelClient *dcc, int surface_id,
|
||||
int wait_if_used)
|
||||
{
|
||||
GList *l;
|
||||
int x;
|
||||
@ -534,7 +534,7 @@ static void dcc_create_all_streams(DisplayChannelClient *dcc)
|
||||
}
|
||||
|
||||
/* TODO: this function is evil^Wsynchronous, fix */
|
||||
static int display_channel_client_wait_for_init(DisplayChannelClient *dcc)
|
||||
static bool display_channel_client_wait_for_init(DisplayChannelClient *dcc)
|
||||
{
|
||||
dcc->priv->expect_init = TRUE;
|
||||
uint64_t end_time = spice_get_monotonic_time_ns() + COMMON_CLIENT_TIMEOUT;
|
||||
@ -946,8 +946,8 @@ static void dcc_push_release(DisplayChannelClient *dcc, uint8_t type, uint64_t i
|
||||
free_list->res->resources[free_list->res->count++].id = id;
|
||||
}
|
||||
|
||||
int dcc_pixmap_cache_unlocked_add(DisplayChannelClient *dcc, uint64_t id,
|
||||
uint32_t size, int lossy)
|
||||
bool dcc_pixmap_cache_unlocked_add(DisplayChannelClient *dcc, uint64_t id,
|
||||
uint32_t size, int lossy)
|
||||
{
|
||||
PixmapCache *cache = dcc->priv->pixmap_cache;
|
||||
NewCacheItem *item;
|
||||
@ -1012,7 +1012,7 @@ int dcc_pixmap_cache_unlocked_add(DisplayChannelClient *dcc, uint64_t id,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int dcc_handle_init(DisplayChannelClient *dcc, SpiceMsgcDisplayInit *init)
|
||||
static bool dcc_handle_init(DisplayChannelClient *dcc, SpiceMsgcDisplayInit *init)
|
||||
{
|
||||
gboolean success;
|
||||
RedClient *client = red_channel_client_get_client(RED_CHANNEL_CLIENT(dcc));
|
||||
@ -1035,8 +1035,8 @@ static int dcc_handle_init(DisplayChannelClient *dcc, SpiceMsgcDisplayInit *init
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int dcc_handle_stream_report(DisplayChannelClient *dcc,
|
||||
SpiceMsgcDisplayStreamReport *report)
|
||||
static bool dcc_handle_stream_report(DisplayChannelClient *dcc,
|
||||
SpiceMsgcDisplayStreamReport *report)
|
||||
{
|
||||
StreamAgent *agent;
|
||||
|
||||
@ -1080,8 +1080,8 @@ static int dcc_handle_stream_report(DisplayChannelClient *dcc,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int dcc_handle_preferred_compression(DisplayChannelClient *dcc,
|
||||
SpiceMsgcDisplayPreferredCompression *pc)
|
||||
static bool dcc_handle_preferred_compression(DisplayChannelClient *dcc,
|
||||
SpiceMsgcDisplayPreferredCompression *pc)
|
||||
{
|
||||
switch (pc->image_compression) {
|
||||
case SPICE_IMAGE_COMPRESSION_AUTO_LZ:
|
||||
@ -1101,7 +1101,6 @@ static int dcc_handle_preferred_compression(DisplayChannelClient *dcc,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/* TODO: Client preference should only be considered when host has video-codecs
|
||||
* with the same priority value. At the moment, the video-codec GArray will be
|
||||
* sorted following only the client's preference (@user_data)
|
||||
@ -1214,7 +1213,7 @@ GArray *dcc_get_preferred_video_codecs_for_encoding(DisplayChannelClient *dcc)
|
||||
return display_channel_get_video_codecs(DCC_TO_DC(dcc));
|
||||
}
|
||||
|
||||
static int dcc_handle_gl_draw_done(DisplayChannelClient *dcc)
|
||||
static bool dcc_handle_gl_draw_done(DisplayChannelClient *dcc)
|
||||
{
|
||||
DisplayChannel *display = DCC_TO_DC(dcc);
|
||||
|
||||
@ -1230,7 +1229,7 @@ static int dcc_handle_gl_draw_done(DisplayChannelClient *dcc)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int dcc_handle_message(RedChannelClient *rcc, uint16_t type, uint32_t size, void *msg)
|
||||
bool dcc_handle_message(RedChannelClient *rcc, uint16_t type, uint32_t size, void *msg)
|
||||
{
|
||||
DisplayChannelClient *dcc = DISPLAY_CHANNEL_CLIENT(rcc);
|
||||
|
||||
@ -1261,7 +1260,7 @@ static int dcc_handle_migrate_glz_dictionary(DisplayChannelClient *dcc,
|
||||
&migrate->glz_dict_data);
|
||||
}
|
||||
|
||||
static int restore_surface(DisplayChannelClient *dcc, uint32_t surface_id)
|
||||
static bool restore_surface(DisplayChannelClient *dcc, uint32_t surface_id)
|
||||
{
|
||||
/* we don't process commands till we receive the migration data, thus,
|
||||
* we should have not sent any surface to the client. */
|
||||
@ -1273,8 +1272,8 @@ static int restore_surface(DisplayChannelClient *dcc, uint32_t surface_id)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int restore_surfaces_lossless(DisplayChannelClient *dcc,
|
||||
MigrateDisplaySurfacesAtClientLossless *mig_surfaces)
|
||||
static bool restore_surfaces_lossless(DisplayChannelClient *dcc,
|
||||
MigrateDisplaySurfacesAtClientLossless *mig_surfaces)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
@ -1288,8 +1287,8 @@ static int restore_surfaces_lossless(DisplayChannelClient *dcc,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int restore_surfaces_lossy(DisplayChannelClient *dcc,
|
||||
MigrateDisplaySurfacesAtClientLossy *mig_surfaces)
|
||||
static bool restore_surfaces_lossy(DisplayChannelClient *dcc,
|
||||
MigrateDisplaySurfacesAtClientLossy *mig_surfaces)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
@ -1313,7 +1312,7 @@ static int restore_surfaces_lossy(DisplayChannelClient *dcc,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int dcc_handle_migrate_data(DisplayChannelClient *dcc, uint32_t size, void *message)
|
||||
bool dcc_handle_migrate_data(DisplayChannelClient *dcc, uint32_t size, void *message)
|
||||
{
|
||||
DisplayChannel *display = DCC_TO_DC(dcc);
|
||||
int surfaces_restored = FALSE;
|
||||
@ -1421,7 +1420,7 @@ void dcc_set_max_stream_bit_rate(DisplayChannelClient *dcc, uint64_t rate)
|
||||
dcc->priv->streams_max_bit_rate = rate;
|
||||
}
|
||||
|
||||
static int dcc_config_socket(RedChannelClient *rcc)
|
||||
static bool dcc_config_socket(RedChannelClient *rcc)
|
||||
{
|
||||
RedClient *client = red_channel_client_get_client(rcc);
|
||||
MainChannelClient *mcc = red_client_get_main(client);
|
||||
|
||||
10
server/dcc.h
10
server/dcc.h
@ -138,10 +138,10 @@ DisplayChannelClient* dcc_new (DisplayCha
|
||||
spice_wan_compression_t zlib_glz_state);
|
||||
void dcc_start (DisplayChannelClient *dcc);
|
||||
void dcc_stop (DisplayChannelClient *dcc);
|
||||
int dcc_handle_message (RedChannelClient *rcc,
|
||||
bool dcc_handle_message (RedChannelClient *rcc,
|
||||
uint16_t type,
|
||||
uint32_t size, void *msg);
|
||||
int dcc_handle_migrate_data (DisplayChannelClient *dcc,
|
||||
bool dcc_handle_migrate_data (DisplayChannelClient *dcc,
|
||||
uint32_t size, void *message);
|
||||
void dcc_push_monitors_config (DisplayChannelClient *dcc);
|
||||
void dcc_destroy_surface (DisplayChannelClient *dcc,
|
||||
@ -163,7 +163,7 @@ void dcc_palette_cache_reset (DisplayCha
|
||||
void dcc_palette_cache_palette (DisplayChannelClient *dcc,
|
||||
SpicePalette *palette,
|
||||
uint8_t *flags);
|
||||
int dcc_pixmap_cache_unlocked_add (DisplayChannelClient *dcc,
|
||||
bool dcc_pixmap_cache_unlocked_add (DisplayChannelClient *dcc,
|
||||
uint64_t id, uint32_t size, int lossy);
|
||||
void dcc_prepend_drawable (DisplayChannelClient *dcc,
|
||||
Drawable *drawable);
|
||||
@ -174,10 +174,10 @@ void dcc_add_drawable_after (DisplayCha
|
||||
RedPipeItem *pos);
|
||||
void dcc_send_item (RedChannelClient *dcc,
|
||||
RedPipeItem *item);
|
||||
int dcc_clear_surface_drawables_from_pipe (DisplayChannelClient *dcc,
|
||||
bool dcc_clear_surface_drawables_from_pipe (DisplayChannelClient *dcc,
|
||||
int surface_id,
|
||||
int wait_if_used);
|
||||
int dcc_drawable_is_in_pipe (DisplayChannelClient *dcc,
|
||||
bool dcc_drawable_is_in_pipe (DisplayChannelClient *dcc,
|
||||
Drawable *drawable);
|
||||
RedPipeItem * dcc_gl_scanout_item_new (RedChannelClient *rcc,
|
||||
void *data, int num);
|
||||
|
||||
@ -473,7 +473,7 @@ static void current_remove_all(DisplayChannel *display, int surface_id)
|
||||
}
|
||||
}
|
||||
|
||||
static int current_add_equal(DisplayChannel *display, DrawItem *item, TreeItem *other)
|
||||
static bool current_add_equal(DisplayChannel *display, DrawItem *item, TreeItem *other)
|
||||
{
|
||||
DrawItem *other_draw_item;
|
||||
Drawable *drawable;
|
||||
@ -683,7 +683,7 @@ static void exclude_region(DisplayChannel *display, Ring *ring, RingItem *ring_i
|
||||
}
|
||||
}
|
||||
|
||||
static int current_add_with_shadow(DisplayChannel *display, Ring *ring, Drawable *item)
|
||||
static bool current_add_with_shadow(DisplayChannel *display, Ring *ring, Drawable *item)
|
||||
{
|
||||
stat_start(&display->priv->add_stat, start_time);
|
||||
#ifdef RED_WORKER_STAT
|
||||
@ -726,7 +726,7 @@ static int current_add_with_shadow(DisplayChannel *display, Ring *ring, Drawable
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int current_add(DisplayChannel *display, Ring *ring, Drawable *drawable)
|
||||
static bool current_add(DisplayChannel *display, Ring *ring, Drawable *drawable)
|
||||
{
|
||||
DrawItem *item = &drawable->tree_item;
|
||||
RingItem *now;
|
||||
@ -1005,7 +1005,7 @@ static void surface_add_reverse_dependency(DisplayChannel *display, int surface_
|
||||
ring_add(&surface->depend_on_me, &depend_item->ring_item);
|
||||
}
|
||||
|
||||
static int handle_surface_deps(DisplayChannel *display, Drawable *drawable)
|
||||
static bool handle_surface_deps(DisplayChannel *display, Drawable *drawable)
|
||||
{
|
||||
int x;
|
||||
|
||||
@ -1043,7 +1043,7 @@ static void draw_depend_on_me(DisplayChannel *display, uint32_t surface_id)
|
||||
}
|
||||
}
|
||||
|
||||
static int validate_drawable_bbox(DisplayChannel *display, RedDrawable *drawable)
|
||||
static bool validate_drawable_bbox(DisplayChannel *display, RedDrawable *drawable)
|
||||
{
|
||||
DrawContext *context;
|
||||
uint32_t surface_id = drawable->surface_id;
|
||||
@ -1192,7 +1192,7 @@ void display_channel_process_draw(DisplayChannel *display, RedDrawable *red_draw
|
||||
drawable_unref(drawable);
|
||||
}
|
||||
|
||||
int display_channel_wait_for_migrate_data(DisplayChannel *display)
|
||||
bool display_channel_wait_for_migrate_data(DisplayChannel *display)
|
||||
{
|
||||
uint64_t end_time = spice_get_monotonic_time_ns() + DISPLAY_CLIENT_MIGRATE_DATA_TIMEOUT;
|
||||
RedChannelClient *rcc;
|
||||
@ -1950,7 +1950,7 @@ static void on_disconnect(RedChannelClient *rcc)
|
||||
display->priv->encoder_shared_data.glz_drawable_count);
|
||||
}
|
||||
|
||||
static int handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
static bool handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
{
|
||||
RedChannel *channel = red_channel_client_get_channel(rcc);
|
||||
|
||||
@ -1967,7 +1967,7 @@ static uint64_t handle_migrate_data_get_serial(RedChannelClient *rcc, uint32_t s
|
||||
return migrate_data->message_serial;
|
||||
}
|
||||
|
||||
static int handle_migrate_data(RedChannelClient *rcc, uint32_t size, void *message)
|
||||
static bool handle_migrate_data(RedChannelClient *rcc, uint32_t size, void *message)
|
||||
{
|
||||
return dcc_handle_migrate_data(DISPLAY_CHANNEL_CLIENT(rcc), size, message);
|
||||
}
|
||||
|
||||
@ -236,7 +236,7 @@ void display_channel_surface_unref (DisplayCha
|
||||
uint32_t surface_id);
|
||||
void display_channel_current_flush (DisplayChannel *display,
|
||||
int surface_id);
|
||||
int display_channel_wait_for_migrate_data (DisplayChannel *display);
|
||||
bool display_channel_wait_for_migrate_data (DisplayChannel *display);
|
||||
void display_channel_flush_all_surfaces (DisplayChannel *display);
|
||||
void display_channel_free_glz_drawables_to_free(DisplayChannel *display);
|
||||
void display_channel_free_glz_drawables (DisplayChannel *display);
|
||||
|
||||
@ -46,7 +46,7 @@ static inline void __glz_dictionary_window_reset_images(SharedDictionary *dict)
|
||||
}
|
||||
|
||||
/* allocate window fields (no reset)*/
|
||||
static int glz_dictionary_window_create(SharedDictionary *dict, uint32_t size)
|
||||
static bool glz_dictionary_window_create(SharedDictionary *dict, uint32_t size)
|
||||
{
|
||||
if (size > LZ_MAX_WINDOW_SIZE) {
|
||||
return FALSE;
|
||||
@ -424,7 +424,7 @@ static WindowImage *glz_dictionary_window_get_new_head(SharedDictionary *dict, i
|
||||
return cur_head;
|
||||
}
|
||||
|
||||
static inline int glz_dictionary_is_in_use(SharedDictionary *dict)
|
||||
static inline bool glz_dictionary_is_in_use(SharedDictionary *dict)
|
||||
{
|
||||
uint32_t i = 0;
|
||||
for (i = 0; i < dict->max_encoders; i++) {
|
||||
|
||||
@ -108,7 +108,7 @@ static inline void compress_output_prev(Encoder *encoder)
|
||||
GLZ_ASSERT(encoder->usr, encoder->io.now == encoder->io.last_copy)
|
||||
}
|
||||
|
||||
static int encoder_reset(Encoder *encoder, uint8_t *io_ptr, uint8_t *io_ptr_end)
|
||||
static bool encoder_reset(Encoder *encoder, uint8_t *io_ptr, uint8_t *io_ptr_end)
|
||||
{
|
||||
GLZ_ASSERT(encoder->usr, io_ptr <= io_ptr_end);
|
||||
encoder->io.bytes_count = io_ptr_end - io_ptr;
|
||||
|
||||
@ -35,7 +35,7 @@ static ImageCacheItem *image_cache_find(ImageCache *cache, uint64_t id)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int image_cache_hit(ImageCache *cache, uint64_t id)
|
||||
static bool image_cache_hit(ImageCache *cache, uint64_t id)
|
||||
{
|
||||
ImageCacheItem *item;
|
||||
if (!(item = image_cache_find(cache, id))) {
|
||||
|
||||
@ -827,8 +827,8 @@ static void image_encoders_release_glz(ImageEncoders *enc)
|
||||
free(shared_dict);
|
||||
}
|
||||
|
||||
int image_encoders_compress_quic(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data)
|
||||
bool image_encoders_compress_quic(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data)
|
||||
{
|
||||
QuicData *quic_data = &enc->quic_data;
|
||||
QuicContext *quic = enc->quic;
|
||||
@ -914,9 +914,9 @@ static const LzImageType bitmap_fmt_to_lz_image_type[] = {
|
||||
LZ_IMAGE_TYPE_A8
|
||||
};
|
||||
|
||||
int image_encoders_compress_lz(ImageEncoders *enc,
|
||||
SpiceImage *dest, SpiceBitmap *src,
|
||||
compress_send_data_t* o_comp_data)
|
||||
bool image_encoders_compress_lz(ImageEncoders *enc,
|
||||
SpiceImage *dest, SpiceBitmap *src,
|
||||
compress_send_data_t* o_comp_data)
|
||||
{
|
||||
LzData *lz_data = &enc->lz_data;
|
||||
LzContext *lz = enc->lz;
|
||||
@ -979,8 +979,8 @@ int image_encoders_compress_lz(ImageEncoders *enc,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int image_encoders_compress_jpeg(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data)
|
||||
bool image_encoders_compress_jpeg(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data)
|
||||
{
|
||||
JpegData *jpeg_data = &enc->jpeg_data;
|
||||
LzData *lz_data = &enc->lz_data;
|
||||
@ -1105,8 +1105,8 @@ int image_encoders_compress_jpeg(ImageEncoders *enc, SpiceImage *dest,
|
||||
}
|
||||
|
||||
#ifdef USE_LZ4
|
||||
int image_encoders_compress_lz4(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data)
|
||||
bool image_encoders_compress_lz4(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data)
|
||||
{
|
||||
Lz4Data *lz4_data = &enc->lz4_data;
|
||||
Lz4EncoderContext *lz4 = enc->lz4;
|
||||
@ -1208,12 +1208,12 @@ static GlzDrawableInstanceItem *add_glz_drawable_instance(RedGlzDrawable *glz_dr
|
||||
|
||||
#define MIN_GLZ_SIZE_FOR_ZLIB 100
|
||||
|
||||
int image_encoders_compress_glz(ImageEncoders *enc,
|
||||
SpiceImage *dest, SpiceBitmap *src,
|
||||
RedDrawable *red_drawable,
|
||||
GlzImageRetention *glz_retention,
|
||||
compress_send_data_t* o_comp_data,
|
||||
gboolean enable_zlib_glz_wrap)
|
||||
bool image_encoders_compress_glz(ImageEncoders *enc,
|
||||
SpiceImage *dest, SpiceBitmap *src,
|
||||
RedDrawable *red_drawable,
|
||||
GlzImageRetention *glz_retention,
|
||||
compress_send_data_t* o_comp_data,
|
||||
gboolean enable_zlib_glz_wrap)
|
||||
{
|
||||
stat_start_time_t start_time;
|
||||
stat_start_time_init(&start_time, &enc->shared_data->zlib_glz_stat);
|
||||
|
||||
@ -196,22 +196,22 @@ typedef struct compress_send_data_t {
|
||||
gboolean is_lossy;
|
||||
} compress_send_data_t;
|
||||
|
||||
int image_encoders_compress_quic(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data);
|
||||
int image_encoders_compress_lz(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data);
|
||||
int image_encoders_compress_jpeg(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data);
|
||||
#ifdef USE_LZ4
|
||||
int image_encoders_compress_lz4(ImageEncoders *enc, SpiceImage *dest,
|
||||
bool image_encoders_compress_quic(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data);
|
||||
bool image_encoders_compress_lz(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data);
|
||||
bool image_encoders_compress_jpeg(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data);
|
||||
#ifdef USE_LZ4
|
||||
bool image_encoders_compress_lz4(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src, compress_send_data_t* o_comp_data);
|
||||
#endif
|
||||
int image_encoders_compress_glz(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src,
|
||||
RedDrawable *red_drawable,
|
||||
GlzImageRetention *glz_retention,
|
||||
compress_send_data_t* o_comp_data,
|
||||
gboolean enable_zlib_glz_wrap);
|
||||
bool image_encoders_compress_glz(ImageEncoders *enc, SpiceImage *dest,
|
||||
SpiceBitmap *src,
|
||||
RedDrawable *red_drawable,
|
||||
GlzImageRetention *glz_retention,
|
||||
compress_send_data_t* o_comp_data,
|
||||
gboolean enable_zlib_glz_wrap);
|
||||
|
||||
#define RED_RELEASE_BUNCH_SIZE 64
|
||||
|
||||
|
||||
@ -242,8 +242,8 @@ static void inputs_channel_send_item(RedChannelClient *rcc, RedPipeItem *base)
|
||||
red_channel_client_begin_send_message(rcc);
|
||||
}
|
||||
|
||||
static int inputs_channel_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *message)
|
||||
static bool inputs_channel_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *message)
|
||||
{
|
||||
InputsChannel *inputs_channel = INPUTS_CHANNEL(red_channel_client_get_channel(rcc));
|
||||
InputsChannelClient *icc = INPUTS_CHANNEL_CLIENT(rcc);
|
||||
@ -498,15 +498,15 @@ static void key_modifiers_sender(void *opaque)
|
||||
inputs_channel_push_keyboard_modifiers(inputs, kbd_get_leds(inputs_channel_get_keyboard(inputs)));
|
||||
}
|
||||
|
||||
static int inputs_channel_handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
static bool inputs_channel_handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
{
|
||||
red_channel_client_pipe_add_type(rcc, RED_PIPE_ITEM_MIGRATE_DATA);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int inputs_channel_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size,
|
||||
void *message)
|
||||
static bool inputs_channel_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size,
|
||||
void *message)
|
||||
{
|
||||
InputsChannelClient *icc = INPUTS_CHANNEL_CLIENT(rcc);
|
||||
InputsChannel *inputs = INPUTS_CHANNEL(red_channel_client_get_channel(rcc));
|
||||
|
||||
@ -260,7 +260,7 @@ static void main_channel_client_init(MainChannelClient *self)
|
||||
self->priv->bitrate_per_sec = ~0;
|
||||
}
|
||||
|
||||
static int main_channel_client_push_ping(MainChannelClient *mcc, int size);
|
||||
static bool main_channel_client_push_ping(MainChannelClient *mcc, int size);
|
||||
|
||||
static void main_notify_item_free(RedPipeItem *base)
|
||||
{
|
||||
@ -308,7 +308,7 @@ static RedPipeItem *red_ping_item_new(int size)
|
||||
return &item->base;
|
||||
}
|
||||
|
||||
static int main_channel_client_push_ping(MainChannelClient *mcc, int size)
|
||||
static bool main_channel_client_push_ping(MainChannelClient *mcc, int size)
|
||||
{
|
||||
RedPipeItem *item;
|
||||
|
||||
|
||||
@ -118,8 +118,8 @@ static void main_channel_push_migrate_data_item(MainChannel *main_chan)
|
||||
red_channel_pipes_add_type(RED_CHANNEL(main_chan), RED_PIPE_ITEM_TYPE_MAIN_MIGRATE_DATA);
|
||||
}
|
||||
|
||||
static int main_channel_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size, void *message)
|
||||
static bool main_channel_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size, void *message)
|
||||
{
|
||||
RedChannel *channel = red_channel_client_get_channel(rcc);
|
||||
MainChannelClient *mcc = MAIN_CHANNEL_CLIENT(rcc);
|
||||
@ -174,8 +174,8 @@ void main_channel_migrate_switch(MainChannel *main_chan, RedsMigSpice *mig_targe
|
||||
red_channel_pipes_add_type(RED_CHANNEL(main_chan), RED_PIPE_ITEM_TYPE_MAIN_MIGRATE_SWITCH_HOST);
|
||||
}
|
||||
|
||||
static int main_channel_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *message)
|
||||
static bool main_channel_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *message)
|
||||
{
|
||||
RedChannel *channel = red_channel_client_get_channel(rcc);
|
||||
MainChannel *main_chan = MAIN_CHANNEL(channel);
|
||||
@ -243,7 +243,7 @@ static int main_channel_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int main_channel_handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
static bool main_channel_handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
{
|
||||
RedChannel *channel = red_channel_client_get_channel(rcc);
|
||||
spice_debug(NULL);
|
||||
|
||||
@ -896,8 +896,8 @@ static inline uint8_t *get_image_line(SpiceChunks *chunks, size_t *offset,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int encode_frame(MJpegEncoder *encoder, const SpiceRect *src,
|
||||
const SpiceBitmap *image, int top_down)
|
||||
static bool encode_frame(MJpegEncoder *encoder, const SpiceRect *src,
|
||||
const SpiceBitmap *image, int top_down)
|
||||
{
|
||||
SpiceChunks *chunks;
|
||||
uint32_t image_stride;
|
||||
|
||||
@ -57,7 +57,7 @@ void pixmap_cache_clear(PixmapCache *cache)
|
||||
cache->items = 0;
|
||||
}
|
||||
|
||||
int pixmap_cache_freeze(PixmapCache *cache)
|
||||
bool pixmap_cache_freeze(PixmapCache *cache)
|
||||
{
|
||||
pthread_mutex_lock(&cache->lock);
|
||||
|
||||
|
||||
@ -68,6 +68,6 @@ PixmapCache *pixmap_cache_get(RedClient *client, uint8_t id, int64_t size);
|
||||
void pixmap_cache_unref(PixmapCache *cache);
|
||||
void pixmap_cache_clear(PixmapCache *cache);
|
||||
int pixmap_cache_unlocked_set_lossy(PixmapCache *cache, uint64_t id, int lossy);
|
||||
int pixmap_cache_freeze(PixmapCache *cache);
|
||||
bool pixmap_cache_freeze(PixmapCache *cache);
|
||||
|
||||
#endif /* _PIXMAP_CACHE_H */
|
||||
|
||||
@ -158,7 +158,7 @@ static const SpiceDataHeaderOpaque mini_header_wrapper;
|
||||
static void red_channel_client_clear_sent_item(RedChannelClient *rcc);
|
||||
static void red_channel_client_initable_interface_init(GInitableIface *iface);
|
||||
static void red_channel_client_set_message_serial(RedChannelClient *channel, uint64_t);
|
||||
static int red_channel_client_config_socket(RedChannelClient *rcc);
|
||||
static bool red_channel_client_config_socket(RedChannelClient *rcc);
|
||||
|
||||
/*
|
||||
* When an error occurs over a channel, we treat it as a warning
|
||||
@ -1015,7 +1015,7 @@ void red_channel_client_semi_seamless_migration_complete(RedChannelClient *rcc)
|
||||
}
|
||||
}
|
||||
|
||||
int red_channel_client_is_waiting_for_migrate_data(RedChannelClient *rcc)
|
||||
bool red_channel_client_is_waiting_for_migrate_data(RedChannelClient *rcc)
|
||||
{
|
||||
return rcc->priv->wait_migrate_data;
|
||||
}
|
||||
@ -1054,7 +1054,7 @@ void red_channel_client_shutdown(RedChannelClient *rcc)
|
||||
}
|
||||
}
|
||||
|
||||
static int red_channel_client_config_socket(RedChannelClient *rcc)
|
||||
static bool red_channel_client_config_socket(RedChannelClient *rcc)
|
||||
{
|
||||
RedChannelClientClass *klass = RED_CHANNEL_CLIENT_GET_CLASS(rcc);
|
||||
|
||||
@ -1458,8 +1458,8 @@ static void red_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
}
|
||||
|
||||
|
||||
int red_channel_client_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *message)
|
||||
bool red_channel_client_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *message)
|
||||
{
|
||||
switch (type) {
|
||||
case SPICE_MSGC_ACK_SYNC:
|
||||
@ -1787,9 +1787,9 @@ static void marker_pipe_item_free(RedPipeItem *base)
|
||||
}
|
||||
|
||||
/* TODO: more evil sync stuff. anything with the word wait in it's name. */
|
||||
int red_channel_client_wait_pipe_item_sent(RedChannelClient *rcc,
|
||||
GList *item_pos,
|
||||
int64_t timeout)
|
||||
bool red_channel_client_wait_pipe_item_sent(RedChannelClient *rcc,
|
||||
GList *item_pos,
|
||||
int64_t timeout)
|
||||
{
|
||||
uint64_t end_time;
|
||||
gboolean item_in_pipe;
|
||||
@ -1835,8 +1835,8 @@ int red_channel_client_wait_pipe_item_sent(RedChannelClient *rcc,
|
||||
}
|
||||
}
|
||||
|
||||
int red_channel_client_wait_outgoing_item(RedChannelClient *rcc,
|
||||
int64_t timeout)
|
||||
bool red_channel_client_wait_outgoing_item(RedChannelClient *rcc,
|
||||
int64_t timeout)
|
||||
{
|
||||
uint64_t end_time;
|
||||
int blocked;
|
||||
|
||||
@ -54,7 +54,7 @@ RedChannelClient *red_channel_client_create(RedChannel *channel,
|
||||
|
||||
gboolean red_channel_client_is_connected(RedChannelClient *rcc);
|
||||
void red_channel_client_default_migrate(RedChannelClient *rcc);
|
||||
int red_channel_client_is_waiting_for_migrate_data(RedChannelClient *rcc);
|
||||
bool red_channel_client_is_waiting_for_migrate_data(RedChannelClient *rcc);
|
||||
void red_channel_client_destroy(RedChannelClient *rcc);
|
||||
int red_channel_client_test_remote_common_cap(RedChannelClient *rcc, uint32_t cap);
|
||||
int red_channel_client_test_remote_cap(RedChannelClient *rcc, uint32_t cap);
|
||||
@ -63,8 +63,8 @@ int red_channel_client_test_remote_cap(RedChannelClient *rcc, uint32_t cap);
|
||||
* It should be followed by some way to guarantee a disconnection. */
|
||||
void red_channel_client_shutdown(RedChannelClient *rcc);
|
||||
/* handles general channel msgs from the client */
|
||||
int red_channel_client_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *message);
|
||||
bool red_channel_client_handle_message(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *message);
|
||||
/* when preparing send_data: should call init and then use marshaller */
|
||||
void red_channel_client_init_send_data(RedChannelClient *rcc, uint16_t msg_type);
|
||||
|
||||
@ -142,11 +142,11 @@ void red_channel_client_set_header_sub_list(RedChannelClient *rcc, uint32_t sub_
|
||||
* Return: TRUE if waiting succeeded. FALSE if timeout expired.
|
||||
*/
|
||||
|
||||
int red_channel_client_wait_pipe_item_sent(RedChannelClient *rcc,
|
||||
GList *item_pos,
|
||||
bool red_channel_client_wait_pipe_item_sent(RedChannelClient *rcc,
|
||||
GList *item_pos,
|
||||
int64_t timeout);
|
||||
bool red_channel_client_wait_outgoing_item(RedChannelClient *rcc,
|
||||
int64_t timeout);
|
||||
int red_channel_client_wait_outgoing_item(RedChannelClient *rcc,
|
||||
int64_t timeout);
|
||||
void red_channel_client_disconnect_if_pending_send(RedChannelClient *rcc);
|
||||
|
||||
RedChannel* red_channel_client_get_channel(RedChannelClient *rcc);
|
||||
@ -170,7 +170,7 @@ struct RedChannelClientClass
|
||||
GObjectClass parent_class;
|
||||
|
||||
/* configure socket connected to the client */
|
||||
int (*config_socket)(RedChannelClient *rcc);
|
||||
bool (*config_socket)(RedChannelClient *rcc);
|
||||
uint8_t *(*alloc_recv_buf)(RedChannelClient *channel, uint16_t type, uint32_t size);
|
||||
void (*release_recv_buf)(RedChannelClient *channel, uint16_t type, uint32_t size, uint8_t *msg);
|
||||
};
|
||||
|
||||
@ -314,7 +314,7 @@ void red_channel_add_client(RedChannel *channel, RedChannelClient *rcc)
|
||||
channel->priv->clients = g_list_prepend(channel->priv->clients, rcc);
|
||||
}
|
||||
|
||||
int red_channel_test_remote_common_cap(RedChannel *channel, uint32_t cap)
|
||||
bool red_channel_test_remote_common_cap(RedChannel *channel, uint32_t cap)
|
||||
{
|
||||
GListIter iter;
|
||||
RedChannelClient *rcc;
|
||||
@ -327,7 +327,7 @@ int red_channel_test_remote_common_cap(RedChannel *channel, uint32_t cap)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int red_channel_test_remote_cap(RedChannel *channel, uint32_t cap)
|
||||
bool red_channel_test_remote_cap(RedChannel *channel, uint32_t cap)
|
||||
{
|
||||
GListIter iter;
|
||||
RedChannelClient *rcc;
|
||||
@ -340,7 +340,7 @@ int red_channel_test_remote_cap(RedChannel *channel, uint32_t cap)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int red_channel_is_waiting_for_migrate_data(RedChannel *channel)
|
||||
bool red_channel_is_waiting_for_migrate_data(RedChannel *channel)
|
||||
{
|
||||
RedChannelClient *rcc;
|
||||
guint n_clients = g_list_length(channel->priv->clients);
|
||||
@ -522,7 +522,7 @@ guint red_channel_get_n_clients(RedChannel *channel)
|
||||
return g_list_length(channel->priv->clients);
|
||||
}
|
||||
|
||||
int red_channel_all_blocked(RedChannel *channel)
|
||||
bool red_channel_all_blocked(RedChannel *channel)
|
||||
{
|
||||
GListIter iter;
|
||||
RedChannelClient *rcc;
|
||||
@ -538,7 +538,7 @@ int red_channel_all_blocked(RedChannel *channel)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int red_channel_any_blocked(RedChannel *channel)
|
||||
bool red_channel_any_blocked(RedChannel *channel)
|
||||
{
|
||||
GListIter iter;
|
||||
RedChannelClient *rcc;
|
||||
@ -551,7 +551,7 @@ int red_channel_any_blocked(RedChannel *channel)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
int red_channel_no_item_being_sent(RedChannel *channel)
|
||||
bool red_channel_no_item_being_sent(RedChannel *channel)
|
||||
{
|
||||
GListIter iter;
|
||||
RedChannelClient *rcc;
|
||||
@ -665,8 +665,8 @@ uint32_t red_channel_sum_pipes_size(RedChannel *channel)
|
||||
return sum;
|
||||
}
|
||||
|
||||
int red_channel_wait_all_sent(RedChannel *channel,
|
||||
int64_t timeout)
|
||||
bool red_channel_wait_all_sent(RedChannel *channel,
|
||||
int64_t timeout)
|
||||
{
|
||||
uint64_t end_time;
|
||||
uint32_t max_pipe_size;
|
||||
|
||||
@ -43,15 +43,15 @@ typedef struct RedChannelClient RedChannelClient;
|
||||
typedef struct RedClient RedClient;
|
||||
typedef struct MainChannelClient MainChannelClient;
|
||||
|
||||
typedef int (*channel_handle_message_proc)(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *msg);
|
||||
typedef bool (*channel_handle_message_proc)(RedChannelClient *rcc, uint16_t type,
|
||||
uint32_t size, void *msg);
|
||||
typedef void (*channel_disconnect_proc)(RedChannelClient *rcc);
|
||||
typedef int (*channel_configure_socket_proc)(RedChannelClient *rcc);
|
||||
typedef bool (*channel_configure_socket_proc)(RedChannelClient *rcc);
|
||||
typedef void (*channel_send_pipe_item_proc)(RedChannelClient *rcc, RedPipeItem *item);
|
||||
|
||||
typedef int (*channel_handle_migrate_flush_mark_proc)(RedChannelClient *base);
|
||||
typedef int (*channel_handle_migrate_data_proc)(RedChannelClient *base,
|
||||
uint32_t size, void *message);
|
||||
typedef bool (*channel_handle_migrate_flush_mark_proc)(RedChannelClient *base);
|
||||
typedef bool (*channel_handle_migrate_data_proc)(RedChannelClient *base,
|
||||
uint32_t size, void *message);
|
||||
typedef uint64_t (*channel_handle_migrate_data_get_serial_proc)(RedChannelClient *base,
|
||||
uint32_t size, void *message);
|
||||
|
||||
@ -145,7 +145,7 @@ int red_channel_is_connected(RedChannel *channel);
|
||||
/* seamless migration is supported for only one client. This routine
|
||||
* checks if the only channel client associated with channel is
|
||||
* waiting for migration data */
|
||||
int red_channel_is_waiting_for_migrate_data(RedChannel *channel);
|
||||
bool red_channel_is_waiting_for_migrate_data(RedChannel *channel);
|
||||
|
||||
/*
|
||||
* the disconnect callback is called from the channel's thread,
|
||||
@ -157,8 +157,8 @@ int red_channel_is_waiting_for_migrate_data(RedChannel *channel);
|
||||
void red_channel_destroy(RedChannel *channel);
|
||||
|
||||
/* return true if all the channel clients support the cap */
|
||||
int red_channel_test_remote_common_cap(RedChannel *channel, uint32_t cap);
|
||||
int red_channel_test_remote_cap(RedChannel *channel, uint32_t cap);
|
||||
bool red_channel_test_remote_common_cap(RedChannel *channel, uint32_t cap);
|
||||
bool red_channel_test_remote_cap(RedChannel *channel, uint32_t cap);
|
||||
|
||||
/* should be called when a new channel is ready to send messages */
|
||||
void red_channel_init_outgoing_messages_window(RedChannel *channel);
|
||||
@ -176,12 +176,12 @@ void red_channel_pipes_add_type(RedChannel *channel, int pipe_item_type);
|
||||
void red_channel_pipes_add_empty_msg(RedChannel *channel, int msg_type);
|
||||
|
||||
/* return TRUE if all of the connected clients to this channel are blocked */
|
||||
int red_channel_all_blocked(RedChannel *channel);
|
||||
bool red_channel_all_blocked(RedChannel *channel);
|
||||
|
||||
/* return TRUE if any of the connected clients to this channel are blocked */
|
||||
int red_channel_any_blocked(RedChannel *channel);
|
||||
bool red_channel_any_blocked(RedChannel *channel);
|
||||
|
||||
int red_channel_no_item_being_sent(RedChannel *channel);
|
||||
bool red_channel_no_item_being_sent(RedChannel *channel);
|
||||
|
||||
// TODO: unstaticed for display/cursor channels. they do some specific pushes not through
|
||||
// adding elements or on events. but not sure if this is actually required (only result
|
||||
@ -238,8 +238,8 @@ const RedChannelCapabilities* red_channel_get_local_capabilities(RedChannel *sel
|
||||
* Return: TRUE if waiting succeeded. FALSE if timeout expired.
|
||||
*/
|
||||
|
||||
int red_channel_wait_all_sent(RedChannel *channel,
|
||||
int64_t timeout);
|
||||
bool red_channel_wait_all_sent(RedChannel *channel,
|
||||
int64_t timeout);
|
||||
|
||||
/* wrappers for client callbacks */
|
||||
void red_channel_migrate_client(RedChannel *channel, RedChannelClient *rcc);
|
||||
|
||||
@ -429,7 +429,7 @@ static const char *bitmap_format_to_string(int format)
|
||||
static const unsigned int MAP_BITMAP_FMT_TO_BITS_PER_PIXEL[] =
|
||||
{0, 1, 1, 4, 4, 8, 16, 24, 32, 32, 8};
|
||||
|
||||
static int bitmap_consistent(SpiceBitmap *bitmap)
|
||||
static bool bitmap_consistent(SpiceBitmap *bitmap)
|
||||
{
|
||||
unsigned int bpp;
|
||||
|
||||
|
||||
@ -982,7 +982,7 @@ static void handle_dev_close(void *opaque, void *payload)
|
||||
g_main_loop_quit(worker->loop);
|
||||
}
|
||||
|
||||
static int loadvm_command(RedWorker *worker, QXLCommandExt *ext)
|
||||
static bool loadvm_command(RedWorker *worker, QXLCommandExt *ext)
|
||||
{
|
||||
switch (ext->cmd.type) {
|
||||
case QXL_CMD_CURSOR:
|
||||
|
||||
@ -238,7 +238,7 @@ int reds_stream_get_family(const RedsStream *s)
|
||||
return s->priv->info->laddr_ext.ss_family;
|
||||
}
|
||||
|
||||
int reds_stream_is_plain_unix(const RedsStream *s)
|
||||
bool reds_stream_is_plain_unix(const RedsStream *s)
|
||||
{
|
||||
spice_return_val_if_fail(s != NULL, FALSE);
|
||||
|
||||
|
||||
@ -71,7 +71,7 @@ bool reds_stream_is_ssl(RedsStream *stream);
|
||||
RedsStreamSslStatus reds_stream_ssl_accept(RedsStream *stream);
|
||||
int reds_stream_enable_ssl(RedsStream *stream, SSL_CTX *ctx);
|
||||
int reds_stream_get_family(const RedsStream *stream);
|
||||
int reds_stream_is_plain_unix(const RedsStream *stream);
|
||||
bool reds_stream_is_plain_unix(const RedsStream *stream);
|
||||
int reds_stream_send_msgfd(RedsStream *stream, int fd);
|
||||
|
||||
typedef enum {
|
||||
|
||||
@ -916,7 +916,7 @@ SPICE_GNUC_VISIBLE int spice_server_get_num_clients(SpiceServer *reds)
|
||||
return reds_get_n_clients(reds);
|
||||
}
|
||||
|
||||
static int channel_supports_multiple_clients(RedChannel *channel)
|
||||
static bool channel_supports_multiple_clients(RedChannel *channel)
|
||||
{
|
||||
uint32_t type;
|
||||
g_object_get(channel, "channel-type", &type, NULL);
|
||||
@ -1379,8 +1379,8 @@ static int reds_agent_state_restore(RedsState *reds, SpiceMigrateDataMain *mig_d
|
||||
* attached only after the vm is started. It might be attached before or after
|
||||
* the migration data has reached the server.
|
||||
*/
|
||||
int reds_handle_migrate_data(RedsState *reds, MainChannelClient *mcc,
|
||||
SpiceMigrateDataMain *mig_data, uint32_t size)
|
||||
bool reds_handle_migrate_data(RedsState *reds, MainChannelClient *mcc,
|
||||
SpiceMigrateDataMain *mig_data, uint32_t size)
|
||||
{
|
||||
RedCharDeviceVDIPort *agent_dev = reds->agent_dev;
|
||||
|
||||
@ -1456,7 +1456,7 @@ static bool red_link_info_test_capability(const RedLinkInfo *link, uint32_t cap)
|
||||
}
|
||||
|
||||
|
||||
static int reds_send_link_ack(RedsState *reds, RedLinkInfo *link)
|
||||
static bool reds_send_link_ack(RedsState *reds, RedLinkInfo *link)
|
||||
{
|
||||
struct {
|
||||
SpiceLinkHeader header;
|
||||
@ -1652,7 +1652,7 @@ static void reds_mig_target_client_disconnect_all(RedsState *reds)
|
||||
}
|
||||
}
|
||||
|
||||
static int reds_find_client(RedsState *reds, RedClient *client)
|
||||
static bool reds_find_client(RedsState *reds, RedClient *client)
|
||||
{
|
||||
GListIter iter;
|
||||
RedClient *list_client;
|
||||
@ -1828,7 +1828,7 @@ static void reds_channel_do_link(RedChannel *channel, RedClient *client,
|
||||
* not lose any data, we activate the target channels before
|
||||
* migration completes, as soon as we receive SPICE_MSGC_MAIN_MIGRATE_DST_DO_SEAMLESS
|
||||
*/
|
||||
static int reds_link_mig_target_channels(RedsState *reds, RedClient *client)
|
||||
static bool reds_link_mig_target_channels(RedsState *reds, RedClient *client)
|
||||
{
|
||||
RedsMigTargetClient *mig_client;
|
||||
GList *item;
|
||||
|
||||
@ -82,8 +82,8 @@ void reds_release_agent_data_buffer(RedsState *reds, uint8_t *buf);
|
||||
void reds_on_main_agent_data(RedsState *reds, MainChannelClient *mcc, void *message, size_t size);
|
||||
void reds_on_main_migrate_connected(RedsState *reds, int seamless); //should be called when all the clients
|
||||
// are connected to the target
|
||||
int reds_handle_migrate_data(RedsState *recs, MainChannelClient *mcc,
|
||||
SpiceMigrateDataMain *mig_data, uint32_t size);
|
||||
bool reds_handle_migrate_data(RedsState *recs, MainChannelClient *mcc,
|
||||
SpiceMigrateDataMain *mig_data, uint32_t size);
|
||||
void reds_on_main_mouse_mode_request(RedsState *reds, void *message, size_t size);
|
||||
/* migration dest side: returns whether it can support seamless migration
|
||||
* with the given src migration protocol version */
|
||||
|
||||
@ -283,10 +283,10 @@ static void smartcard_channel_client_write_to_reader(SmartCardChannelClient *scc
|
||||
}
|
||||
|
||||
|
||||
int smartcard_channel_client_handle_message(RedChannelClient *rcc,
|
||||
uint16_t type,
|
||||
uint32_t size,
|
||||
void *message)
|
||||
bool smartcard_channel_client_handle_message(RedChannelClient *rcc,
|
||||
uint16_t type,
|
||||
uint32_t size,
|
||||
void *message)
|
||||
{
|
||||
uint8_t *msg = message;
|
||||
VSCMsgHeader* vheader = message;
|
||||
@ -334,9 +334,9 @@ int smartcard_channel_client_handle_message(RedChannelClient *rcc,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int smartcard_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size,
|
||||
void *message)
|
||||
bool smartcard_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size,
|
||||
void *message)
|
||||
{
|
||||
SmartCardChannelClient *scc;
|
||||
SpiceMigrateDataHeader *header;
|
||||
@ -376,7 +376,7 @@ int smartcard_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
mig_data);
|
||||
}
|
||||
|
||||
int smartcard_channel_client_handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
bool smartcard_channel_client_handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
{
|
||||
red_channel_client_pipe_add_type(rcc, RED_PIPE_ITEM_TYPE_SMARTCARD_MIGRATE_DATA);
|
||||
return TRUE;
|
||||
|
||||
@ -60,7 +60,7 @@ SmartCardChannelClient* smartcard_channel_client_create(RedChannel *channel,
|
||||
int monitor_latency,
|
||||
RedChannelCapabilities *caps);
|
||||
|
||||
int smartcard_channel_client_handle_migrate_flush_mark(RedChannelClient *rcc);
|
||||
bool smartcard_channel_client_handle_migrate_flush_mark(RedChannelClient *rcc);
|
||||
|
||||
void smartcard_channel_client_on_disconnect(RedChannelClient *rcc);
|
||||
|
||||
@ -73,14 +73,14 @@ void smartcard_channel_client_send_error(RedChannelClient *rcc,
|
||||
SpiceMarshaller *m,
|
||||
RedPipeItem *item);
|
||||
|
||||
int smartcard_channel_client_handle_message(RedChannelClient *rcc,
|
||||
uint16_t type,
|
||||
uint32_t size,
|
||||
void *msg);
|
||||
bool smartcard_channel_client_handle_message(RedChannelClient *rcc,
|
||||
uint16_t type,
|
||||
uint32_t size,
|
||||
void *msg);
|
||||
|
||||
int smartcard_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size,
|
||||
void *message);
|
||||
bool smartcard_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size,
|
||||
void *message);
|
||||
|
||||
void smartcard_channel_client_set_char_device(SmartCardChannelClient *scc,
|
||||
RedCharDeviceSmartcard *device);
|
||||
|
||||
@ -269,7 +269,7 @@ static void snd_playback_on_message_done(SndChannelClient *client)
|
||||
}
|
||||
}
|
||||
|
||||
static int snd_record_handle_write(RecordChannelClient *record_client, size_t size, void *message)
|
||||
static bool snd_record_handle_write(RecordChannelClient *record_client, size_t size, void *message)
|
||||
{
|
||||
SpiceMsgcRecordPacket *packet;
|
||||
uint32_t write_pos;
|
||||
@ -314,7 +314,7 @@ static int snd_record_handle_write(RecordChannelClient *record_client, size_t si
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int
|
||||
static bool
|
||||
record_channel_handle_message(RedChannelClient *rcc, uint16_t type, uint32_t size, void *message)
|
||||
{
|
||||
RecordChannelClient *record_client = RECORD_CHANNEL_CLIENT(rcc);
|
||||
@ -357,7 +357,7 @@ record_channel_handle_message(RedChannelClient *rcc, uint16_t type, uint32_t siz
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int snd_channel_send_migrate(SndChannelClient *client)
|
||||
static bool snd_channel_send_migrate(SndChannelClient *client)
|
||||
{
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(client);
|
||||
SpiceMarshaller *m = red_channel_client_get_marshaller(rcc);
|
||||
@ -371,12 +371,12 @@ static int snd_channel_send_migrate(SndChannelClient *client)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int snd_playback_send_migrate(PlaybackChannelClient *client)
|
||||
static bool snd_playback_send_migrate(PlaybackChannelClient *client)
|
||||
{
|
||||
return snd_channel_send_migrate(SND_CHANNEL_CLIENT(client));
|
||||
}
|
||||
|
||||
static int snd_send_volume(SndChannelClient *client, uint32_t cap, int msg)
|
||||
static bool snd_send_volume(SndChannelClient *client, uint32_t cap, int msg)
|
||||
{
|
||||
SpiceMsgAudioVolume *vol;
|
||||
uint8_t c;
|
||||
@ -402,13 +402,13 @@ static int snd_send_volume(SndChannelClient *client, uint32_t cap, int msg)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int snd_playback_send_volume(PlaybackChannelClient *playback_client)
|
||||
static bool snd_playback_send_volume(PlaybackChannelClient *playback_client)
|
||||
{
|
||||
return snd_send_volume(SND_CHANNEL_CLIENT(playback_client), SPICE_PLAYBACK_CAP_VOLUME,
|
||||
SPICE_MSG_PLAYBACK_VOLUME);
|
||||
}
|
||||
|
||||
static int snd_send_mute(SndChannelClient *client, uint32_t cap, int msg)
|
||||
static bool snd_send_mute(SndChannelClient *client, uint32_t cap, int msg)
|
||||
{
|
||||
SpiceMsgAudioMute mute;
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(client);
|
||||
@ -428,13 +428,13 @@ static int snd_send_mute(SndChannelClient *client, uint32_t cap, int msg)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int snd_playback_send_mute(PlaybackChannelClient *playback_client)
|
||||
static bool snd_playback_send_mute(PlaybackChannelClient *playback_client)
|
||||
{
|
||||
return snd_send_mute(SND_CHANNEL_CLIENT(playback_client), SPICE_PLAYBACK_CAP_VOLUME,
|
||||
SPICE_MSG_PLAYBACK_MUTE);
|
||||
}
|
||||
|
||||
static int snd_playback_send_latency(PlaybackChannelClient *playback_client)
|
||||
static bool snd_playback_send_latency(PlaybackChannelClient *playback_client)
|
||||
{
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(playback_client);
|
||||
SpiceMarshaller *m = red_channel_client_get_marshaller(rcc);
|
||||
@ -449,7 +449,7 @@ static int snd_playback_send_latency(PlaybackChannelClient *playback_client)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int snd_playback_send_start(PlaybackChannelClient *playback_client)
|
||||
static bool snd_playback_send_start(PlaybackChannelClient *playback_client)
|
||||
{
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(playback_client);
|
||||
SpiceMarshaller *m = red_channel_client_get_marshaller(rcc);
|
||||
@ -467,7 +467,7 @@ static int snd_playback_send_start(PlaybackChannelClient *playback_client)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int snd_playback_send_stop(PlaybackChannelClient *playback_client)
|
||||
static bool snd_playback_send_stop(PlaybackChannelClient *playback_client)
|
||||
{
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(playback_client);
|
||||
|
||||
@ -488,7 +488,7 @@ static int snd_playback_send_ctl(PlaybackChannelClient *playback_client)
|
||||
}
|
||||
}
|
||||
|
||||
static int snd_record_send_start(RecordChannelClient *record_client)
|
||||
static bool snd_record_send_start(RecordChannelClient *record_client)
|
||||
{
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(record_client);
|
||||
SpiceMarshaller *m = red_channel_client_get_marshaller(rcc);
|
||||
@ -506,7 +506,7 @@ static int snd_record_send_start(RecordChannelClient *record_client)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int snd_record_send_stop(RecordChannelClient *record_client)
|
||||
static bool snd_record_send_stop(RecordChannelClient *record_client)
|
||||
{
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(record_client);
|
||||
|
||||
@ -527,19 +527,19 @@ static int snd_record_send_ctl(RecordChannelClient *record_client)
|
||||
}
|
||||
}
|
||||
|
||||
static int snd_record_send_volume(RecordChannelClient *record_client)
|
||||
static bool snd_record_send_volume(RecordChannelClient *record_client)
|
||||
{
|
||||
return snd_send_volume(SND_CHANNEL_CLIENT(record_client), SPICE_RECORD_CAP_VOLUME,
|
||||
SPICE_MSG_RECORD_VOLUME);
|
||||
}
|
||||
|
||||
static int snd_record_send_mute(RecordChannelClient *record_client)
|
||||
static bool snd_record_send_mute(RecordChannelClient *record_client)
|
||||
{
|
||||
return snd_send_mute(SND_CHANNEL_CLIENT(record_client), SPICE_RECORD_CAP_VOLUME,
|
||||
SPICE_MSG_RECORD_MUTE);
|
||||
}
|
||||
|
||||
static int snd_record_send_migrate(RecordChannelClient *record_client)
|
||||
static bool snd_record_send_migrate(RecordChannelClient *record_client)
|
||||
{
|
||||
/* No need for migration data: if recording has started before migration,
|
||||
* the client receives RECORD_STOP from the src before the migration completion
|
||||
@ -548,7 +548,7 @@ static int snd_record_send_migrate(RecordChannelClient *record_client)
|
||||
return snd_channel_send_migrate(SND_CHANNEL_CLIENT(record_client));
|
||||
}
|
||||
|
||||
static int snd_playback_send_write(PlaybackChannelClient *playback_client)
|
||||
static bool snd_playback_send_write(PlaybackChannelClient *playback_client)
|
||||
{
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(playback_client);
|
||||
SpiceMarshaller *m = red_channel_client_get_marshaller(rcc);
|
||||
@ -586,7 +586,7 @@ static int snd_playback_send_write(PlaybackChannelClient *playback_client)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int playback_send_mode(PlaybackChannelClient *playback_client)
|
||||
static bool playback_send_mode(PlaybackChannelClient *playback_client)
|
||||
{
|
||||
RedChannelClient *rcc = RED_CHANNEL_CLIENT(playback_client);
|
||||
SpiceMarshaller *m = red_channel_client_get_marshaller(rcc);
|
||||
@ -732,7 +732,7 @@ static void record_channel_send_item(RedChannelClient *rcc, G_GNUC_UNUSED RedPip
|
||||
snd_send(client);
|
||||
}
|
||||
|
||||
static int snd_channel_client_config_socket(RedChannelClient *rcc)
|
||||
static bool snd_channel_client_config_socket(RedChannelClient *rcc)
|
||||
{
|
||||
int delay_val;
|
||||
#ifdef SO_PRIORITY
|
||||
|
||||
@ -512,14 +512,14 @@ static void spicevmc_red_channel_client_on_disconnect(RedChannelClient *rcc)
|
||||
}
|
||||
}
|
||||
|
||||
static int spicevmc_channel_client_handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
static bool spicevmc_channel_client_handle_migrate_flush_mark(RedChannelClient *rcc)
|
||||
{
|
||||
red_channel_client_pipe_add_type(rcc, RED_PIPE_ITEM_TYPE_SPICEVMC_MIGRATE_DATA);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int spicevmc_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size, void *message)
|
||||
static bool spicevmc_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
uint32_t size, void *message)
|
||||
{
|
||||
SpiceMigrateDataHeader *header;
|
||||
SpiceMigrateDataSpiceVmc *mig_data;
|
||||
@ -540,8 +540,8 @@ static int spicevmc_channel_client_handle_migrate_data(RedChannelClient *rcc,
|
||||
return red_char_device_restore(channel->chardev, &mig_data->base);
|
||||
}
|
||||
|
||||
static int handle_compressed_msg(RedVmcChannel *channel, RedChannelClient *rcc,
|
||||
SpiceMsgCompressedData *compressed_data_msg)
|
||||
static bool handle_compressed_msg(RedVmcChannel *channel, RedChannelClient *rcc,
|
||||
SpiceMsgCompressedData *compressed_data_msg)
|
||||
{
|
||||
/* NOTE: *decompressed is free by the char-device */
|
||||
int decompressed_size;
|
||||
@ -582,10 +582,10 @@ static int handle_compressed_msg(RedVmcChannel *channel, RedChannelClient *rcc,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static int spicevmc_red_channel_client_handle_message(RedChannelClient *rcc,
|
||||
uint16_t type,
|
||||
uint32_t size,
|
||||
void *msg)
|
||||
static bool spicevmc_red_channel_client_handle_message(RedChannelClient *rcc,
|
||||
uint16_t type,
|
||||
uint32_t size,
|
||||
void *msg)
|
||||
{
|
||||
/* NOTE: *msg free by free() (when cb to spicevmc_red_channel_release_msg_rcv_buf
|
||||
* with the compressed msg type) */
|
||||
|
||||
@ -429,12 +429,12 @@ static void display_channel_create_stream(DisplayChannel *display, Drawable *dra
|
||||
}
|
||||
|
||||
// returns whether a stream was created
|
||||
static int stream_add_frame(DisplayChannel *display,
|
||||
Drawable *frame_drawable,
|
||||
red_time_t first_frame_time,
|
||||
int frames_count,
|
||||
int gradual_frames_count,
|
||||
int last_gradual_frame)
|
||||
static bool stream_add_frame(DisplayChannel *display,
|
||||
Drawable *frame_drawable,
|
||||
red_time_t first_frame_time,
|
||||
int frames_count,
|
||||
int gradual_frames_count,
|
||||
int last_gradual_frame)
|
||||
{
|
||||
update_copy_graduality(display, frame_drawable);
|
||||
frame_drawable->first_frame_time = first_frame_time;
|
||||
|
||||
@ -273,7 +273,7 @@ Ring *tree_item_container_items(TreeItem *item, Ring *ring)
|
||||
return (item->container) ? &item->container->items : ring;
|
||||
}
|
||||
|
||||
int tree_item_contained_by(TreeItem *item, Ring *ring)
|
||||
bool tree_item_contained_by(TreeItem *item, Ring *ring)
|
||||
{
|
||||
spice_assert(item && ring);
|
||||
do {
|
||||
|
||||
@ -81,7 +81,7 @@ static inline int is_opaque_item(TreeItem *item)
|
||||
|
||||
void tree_item_dump (TreeItem *item);
|
||||
Shadow* tree_item_find_shadow (TreeItem *item);
|
||||
int tree_item_contained_by (TreeItem *item, Ring *ring);
|
||||
bool tree_item_contained_by (TreeItem *item, Ring *ring);
|
||||
Ring* tree_item_container_items (TreeItem *item, Ring *ring);
|
||||
|
||||
void draw_item_remove_shadow (DrawItem *item);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user