summaryrefslogtreecommitdiffstats
path: root/server/reds.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/reds.c')
-rw-r--r--server/reds.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/server/reds.c b/server/reds.c
index a351b882..f61d5d30 100644
--- a/server/reds.c
+++ b/server/reds.c
@@ -54,7 +54,6 @@
#include "common/ring.h"
#include "spice.h"
-#include "spice-experimental.h"
#include "reds.h"
#include "agent-msg-filter.h"
#include "inputs_channel.h"
@@ -3165,9 +3164,6 @@ SPICE_GNUC_VISIBLE int spice_server_add_interface(SpiceServer *s,
}
spice_server_char_device_add_interface(s, sin);
- } else if (strcmp(interface->type, SPICE_INTERFACE_NET_WIRE) == 0) {
- spice_warning("unsupported net wire interface");
- return -1;
} else if (strcmp(interface->type, SPICE_INTERFACE_MIGRATION) == 0) {
spice_info("SPICE_INTERFACE_MIGRATION");
if (migration_interface) {
@@ -3781,20 +3777,6 @@ SPICE_GNUC_VISIBLE int spice_server_migrate_start(SpiceServer *s)
return 0;
}
-SPICE_GNUC_VISIBLE int spice_server_migrate_client_state(SpiceServer *s)
-{
- spice_assert(reds == s);
-
- if (!reds_main_channel_connected()) {
- return SPICE_MIGRATE_CLIENT_NONE;
- } else if (reds->mig_wait_connect) {
- return SPICE_MIGRATE_CLIENT_WAITING;
- } else {
- return SPICE_MIGRATE_CLIENT_READY;
- }
- return 0;
-}
-
SPICE_GNUC_VISIBLE int spice_server_migrate_end(SpiceServer *s, int completed)
{
SpiceMigrateInterface *sif;