summaryrefslogtreecommitdiffstats
path: root/server/spice-experimental.h
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/spice-experimental.h
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/spice-experimental.h')
-rw-r--r--server/spice-experimental.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/server/spice-experimental.h b/server/spice-experimental.h
deleted file mode 100644
index f16d555f..00000000
--- a/server/spice-experimental.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef __SPICE_EXPERIMENTAL_H__
-#define __SPICE_EXPERIMENTAL_H__
-
-#include "spice.h"
-
-/* tunnel interface */
-
-#define SPICE_INTERFACE_NET_WIRE "net_wire"
-#define SPICE_INTERFACE_NET_WIRE_MAJOR 1
-#define SPICE_INTERFACE_NET_WIRE_MINOR 1
-typedef struct SpiceNetWireInterface SpiceNetWireInterface;
-typedef struct SpiceNetWireInstance SpiceNetWireInstance;
-typedef struct SpiceNetWireState SpiceNetWireState;
-
-struct SpiceNetWireInterface {
- SpiceBaseInterface base;
-
- struct in_addr (*get_ip)(SpiceNetWireInstance *sin);
- int (*can_send_packet)(SpiceNetWireInstance *sin);
- void (*send_packet)(SpiceNetWireInstance *sin, const uint8_t *pkt, int len);
-};
-
-struct SpiceNetWireInstance {
- SpiceBaseInstance base;
- SpiceNetWireState *st;
-};
-
-void spice_server_net_wire_recv_packet(SpiceNetWireInstance *sin,
- const uint8_t *pkt, int len);
-
-/* spice seamless client migration (broken) */
-enum {
- SPICE_MIGRATE_CLIENT_NONE = 1,
- SPICE_MIGRATE_CLIENT_WAITING,
- SPICE_MIGRATE_CLIENT_READY,
-};
-
-int spice_server_migrate_client_state(SpiceServer *s);
-
-#endif // __SPICE_EXPERIMENTAL_H__