spice-core.c (daafc661) spice-core.c (9c5ce8db)
1/*
2 * Copyright (C) 2010 Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 or
7 * (at your option) version 3 of the License.
8 *

--- 782 unchanged lines hidden (view full) ---

791 spice_server_set_agent_mouse
792 (spice_server, qemu_opt_get_bool(opts, "agent-mouse", 1));
793 spice_server_set_playback_compression
794 (spice_server, qemu_opt_get_bool(opts, "playback-compression", 1));
795
796 qemu_opt_foreach(opts, add_channel, &tls_port, NULL);
797
798 spice_server_set_name(spice_server, qemu_name);
1/*
2 * Copyright (C) 2010 Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 or
7 * (at your option) version 3 of the License.
8 *

--- 782 unchanged lines hidden (view full) ---

791 spice_server_set_agent_mouse
792 (spice_server, qemu_opt_get_bool(opts, "agent-mouse", 1));
793 spice_server_set_playback_compression
794 (spice_server, qemu_opt_get_bool(opts, "playback-compression", 1));
795
796 qemu_opt_foreach(opts, add_channel, &tls_port, NULL);
797
798 spice_server_set_name(spice_server, qemu_name);
799 spice_server_set_uuid(spice_server, qemu_uuid);
799 spice_server_set_uuid(spice_server, (unsigned char *)&qemu_uuid);
800
801 seamless_migration = qemu_opt_get_bool(opts, "seamless-migration", 0);
802 spice_server_set_seamless_migration(spice_server, seamless_migration);
803 spice_server_set_sasl_appname(spice_server, "qemu");
804 if (spice_server_init(spice_server, &core_interface) != 0) {
805 error_report("failed to initialize spice server");
806 exit(1);
807 };

--- 148 unchanged lines hidden ---
800
801 seamless_migration = qemu_opt_get_bool(opts, "seamless-migration", 0);
802 spice_server_set_seamless_migration(spice_server, seamless_migration);
803 spice_server_set_sasl_appname(spice_server, "qemu");
804 if (spice_server_init(spice_server, &core_interface) != 0) {
805 error_report("failed to initialize spice server");
806 exit(1);
807 };

--- 148 unchanged lines hidden ---