summaryrefslogtreecommitdiffstats
path: root/server/red_tunnel_worker.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2010-03-30 11:28:50 +0200
committerGerd Hoffmann <kraxel@redhat.com>2010-05-19 11:22:06 +0200
commit10e6d8b53cf89b9e7c58b0696f078d18af21827e (patch)
treefd1c50faa573c34737f601dc7f607659f9fb32a5 /server/red_tunnel_worker.c
parent30c740201d1b111ca28e7881ddbcc91f259b8a11 (diff)
downloadspice-10e6d8b53cf89b9e7c58b0696f078d18af21827e.tar.gz
spice-10e6d8b53cf89b9e7c58b0696f078d18af21827e.tar.xz
spice-10e6d8b53cf89b9e7c58b0696f078d18af21827e.zip
s/CoreInterface/SpiceCoreInterface/
Diffstat (limited to 'server/red_tunnel_worker.c')
-rw-r--r--server/red_tunnel_worker.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/red_tunnel_worker.c b/server/red_tunnel_worker.c
index cf1f3179..d4da0b3b 100644
--- a/server/red_tunnel_worker.c
+++ b/server/red_tunnel_worker.c
@@ -534,7 +534,7 @@ struct TunnelWorker {
Channel channel_interface; // for reds
TunnelChannel *channel;
- CoreInterface *core_interface;
+ SpiceCoreInterface *core_interface;
NetWireInterface *vlan_interface;
RedSlirpNetworkInterface tunnel_interface;
RedSlirpNetworkInterface null_interface;
@@ -970,7 +970,8 @@ static void tunnel_send_packet(void *opaque_tunnel, const uint8_t *pkt, int pkt_
net_slirp_input(pkt, pkt_len);
}
-void *red_tunnel_attach(CoreInterface *core_interface, NetWireInterface *vlan_interface)
+void *red_tunnel_attach(SpiceCoreInterface *core_interface,
+ NetWireInterface *vlan_interface)
{
TunnelWorker *worker = spice_new0(TunnelWorker, 1);