summaryrefslogtreecommitdiffstats
path: root/server/red_worker.h
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-10-29 16:54:43 -0500
committerFrediano Ziglio <fziglio@redhat.com>2015-10-30 08:47:53 +0000
commit591f39e7ccd1f9b5ba1839c937883970e1bfefdb (patch)
tree0e125cc7f46bd1b696f25a6a74c16cb3bd70f614 /server/red_worker.h
parent8f5a5582c03774f99796d676f39a32933b6b90a9 (diff)
downloadspice-591f39e7ccd1f9b5ba1839c937883970e1bfefdb.tar.gz
spice-591f39e7ccd1f9b5ba1839c937883970e1bfefdb.tar.xz
spice-591f39e7ccd1f9b5ba1839c937883970e1bfefdb.zip
common_channel_client_create -> common_channel_new_client
Rename and re-order the initial arguments to make this function look and act more like a method of the CommonChannel class. Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'server/red_worker.h')
-rw-r--r--server/red_worker.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/server/red_worker.h b/server/red_worker.h
index c828d999..795959dc 100644
--- a/server/red_worker.h
+++ b/server/red_worker.h
@@ -118,17 +118,6 @@ RedWorker* red_worker_new(QXLInstance *qxl, RedDispatcher *red_dispatcher);
bool red_worker_run(RedWorker *worker);
QXLInstance* red_worker_get_qxl(RedWorker *worker);
-CommonChannelClient *common_channel_client_create(int size,
- CommonChannel *common,
- RedClient *client,
- RedsStream *stream,
- int mig_target,
- int monitor_latency,
- uint32_t *common_caps,
- int num_common_caps,
- uint32_t *caps,
- int num_caps);
-
RedChannel *__new_channel(RedWorker *worker, int size, uint32_t channel_type,
int migration_flags,
channel_disconnect_proc on_disconnect,
@@ -140,4 +129,15 @@ RedChannel *__new_channel(RedWorker *worker, int size, uint32_t channel_type,
channel_handle_migrate_data_proc handle_migrate_data,
channel_handle_migrate_data_get_serial_proc migrate_get_serial);
+CommonChannelClient *common_channel_new_client(CommonChannel *common,
+ int size,
+ RedClient *client,
+ RedsStream *stream,
+ int mig_target,
+ int monitor_latency,
+ uint32_t *common_caps,
+ int num_common_caps,
+ uint32_t *caps,
+ int num_caps);
+
#endif