summaryrefslogtreecommitdiffstats
path: root/server/reds.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2014-10-24 17:16:35 +0200
committerMarc-André Lureau <marcandre.lureau@gmail.com>2015-01-15 18:34:26 +0100
commit3c6b4e415fa1e2ce212d09ba15c90cd58b4ec4b4 (patch)
tree06a919e075b687e12b7553e9ca9ed317b8de63d0 /server/reds.c
parent72cc0cff710f8be3e721fed82ab2ce519f03ccb4 (diff)
downloadspice-3c6b4e415fa1e2ce212d09ba15c90cd58b4ec4b4.tar.gz
spice-3c6b4e415fa1e2ce212d09ba15c90cd58b4ec4b4.tar.xz
spice-3c6b4e415fa1e2ce212d09ba15c90cd58b4ec4b4.zip
Remove spice-experimental
Remove unneded symbols that nobody should be using anyway. ABI is modified with this patch, but the library version is not bumped.
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;