diff options
author | Jonathon Jongsma <jjongsma@redhat.com> | 2016-03-31 16:06:59 -0500 |
---|---|---|
committer | Frediano Ziglio <fziglio@redhat.com> | 2016-04-01 11:59:33 +0100 |
commit | f02b66a22583cdc4efb85b8086759fc926f108f5 (patch) | |
tree | d45a0d6b259d641506b09a40428e018a58db1cdb /server/reds.c | |
parent | fe3d5d542d867a1d4da331035a60403bf7289998 (diff) |
Rename SpiceCharDeviceMsgToClient to RedCharDeviceMsgToClient
Internal types should use Red namespace for consistency
Acked-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'server/reds.c')
-rw-r--r-- | server/reds.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server/reds.c b/server/reds.c index 89422585..eb13cd37 100644 --- a/server/reds.c +++ b/server/reds.c @@ -706,8 +706,8 @@ static void vdi_port_read_buf_unref(VDIReadBuf *buf) /* reads from the device till completes reading a message that is addressed to the client, * or otherwise, when reading from the device fails */ -static SpiceCharDeviceMsgToClient *vdi_port_read_one_msg_from_device(SpiceCharDeviceInstance *sin, - void *opaque) +static RedCharDeviceMsgToClient *vdi_port_read_one_msg_from_device(SpiceCharDeviceInstance *sin, + void *opaque) { RedsState *reds = opaque; VDIPortState *state = &reds->agent_state; @@ -778,20 +778,20 @@ static SpiceCharDeviceMsgToClient *vdi_port_read_one_msg_from_device(SpiceCharDe return NULL; } -static SpiceCharDeviceMsgToClient *vdi_port_ref_msg_to_client(SpiceCharDeviceMsgToClient *msg, - void *opaque) +static RedCharDeviceMsgToClient *vdi_port_ref_msg_to_client(RedCharDeviceMsgToClient *msg, + void *opaque) { return vdi_port_read_buf_ref(msg); } -static void vdi_port_unref_msg_to_client(SpiceCharDeviceMsgToClient *msg, +static void vdi_port_unref_msg_to_client(RedCharDeviceMsgToClient *msg, void *opaque) { vdi_port_read_buf_unref(msg); } /* after calling this, we unref the message, and the ref is in the instance side */ -static void vdi_port_send_msg_to_client(SpiceCharDeviceMsgToClient *msg, +static void vdi_port_send_msg_to_client(RedCharDeviceMsgToClient *msg, RedClient *client, void *opaque) { |