Remove "handle-acks" setting to FALSE

FALSE is the default value, no need to set explicitly.

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Victor Toso <victortoso@redhat.com>
This commit is contained in:
Frediano Ziglio 2020-03-01 12:15:14 +00:00 committed by Victor Toso
parent 673fbd7147
commit 594c2feffa
5 changed files with 0 additions and 5 deletions

View File

@ -570,7 +570,6 @@ InputsChannel* inputs_channel_new(RedsState *reds)
"core-interface", reds_get_core_interface(reds),
"channel-type", (int)SPICE_CHANNEL_INPUTS,
"id", 0,
"handle-acks", FALSE,
"migration-flags",
(guint)(SPICE_MIGRATE_NEED_FLUSH | SPICE_MIGRATE_NEED_DATA_TRANSFER),
NULL);

View File

@ -252,7 +252,6 @@ MainChannel* main_channel_new(RedsState *reds)
"core-interface", reds_get_core_interface(reds),
"channel-type", (gint)SPICE_CHANNEL_MAIN,
"id", 0,
"handle-acks", FALSE, /* handle_acks */
"migration-flags",
(SPICE_MIGRATE_NEED_FLUSH | SPICE_MIGRATE_NEED_DATA_TRANSFER),
NULL);

View File

@ -73,7 +73,6 @@ red_smartcard_channel_new(RedsState *reds)
"core-interface", reds_get_core_interface(reds),
"channel-type", SPICE_CHANNEL_SMARTCARD,
"id", 0,
"handle-acks", FALSE /* handle_acks */,
"migration-flags",
(SPICE_MIGRATE_NEED_FLUSH | SPICE_MIGRATE_NEED_DATA_TRANSFER),
NULL);

View File

@ -253,7 +253,6 @@ static RedVmcChannel *red_vmc_channel_new(RedsState *reds, uint8_t channel_type)
"core-interface", reds_get_core_interface(reds),
"channel-type", channel_type,
"id", id,
"handle-acks", FALSE,
"migration-flags",
(SPICE_MIGRATE_NEED_FLUSH | SPICE_MIGRATE_NEED_DATA_TRANSFER),
NULL);

View File

@ -158,7 +158,6 @@ StreamChannel* stream_channel_new(RedsState *server, uint32_t id)
"channel-type", SPICE_CHANNEL_DISPLAY,
"id", id,
"migration-flags", 0,
"handle-acks", FALSE,
NULL);
}