summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDaniel P. Berrange2016-04-27 12:05:11 +0200
committerAmit Shah2016-05-26 08:02:00 +0200
commit40946ae40b33b8aa03fa9b56a374f5d4b5f7aab7 (patch)
treeaed7436156ad9c31df193f70bfd9fb9c9b281aab /include
parentmigration: delete QEMUSizedBuffer struct (diff)
downloadqemu-40946ae40b33b8aa03fa9b56a374f5d4b5f7aab7.tar.gz
qemu-40946ae40b33b8aa03fa9b56a374f5d4b5f7aab7.tar.xz
qemu-40946ae40b33b8aa03fa9b56a374f5d4b5f7aab7.zip
migration: delete QEMUFile sockets implementation
Now that the tcp, unix and fd migration backends have converted to use the QIOChannel based QEMUFile, there is no user remaining for the sockets based QEMUFile impl and it can be deleted. Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Message-Id: <1461751518-12128-22-git-send-email-berrange@redhat.com> Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/migration/qemu-file.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/migration/qemu-file.h b/include/migration/qemu-file.h
index edaf598ea9..ba5fe081ec 100644
--- a/include/migration/qemu-file.h
+++ b/include/migration/qemu-file.h
@@ -128,8 +128,6 @@ typedef struct QEMUFileHooks {
QEMUFile *qemu_fopen_ops(void *opaque, const QEMUFileOps *ops);
QEMUFile *qemu_fopen(const char *filename, const char *mode);
-QEMUFile *qemu_fdopen(int fd, const char *mode);
-QEMUFile *qemu_fopen_socket(int fd, const char *mode);
QEMUFile *qemu_fopen_channel_input(QIOChannel *ioc);
QEMUFile *qemu_fopen_channel_output(QIOChannel *ioc);
QEMUFile *qemu_popen_cmd(const char *command, const char *mode);