summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChris Lalancette <clalance@redhat.com>2009-08-05 17:24:29 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-24 08:01:42 -0500
commit4951f65bd35ea57c28d8af2d20e1c93087e73f0c (patch)
tree33116b194215a2e693e732eb02aefd37fb373557 /Makefile
parent1632dc6a8f6e8662f4a203b6fb8c0371ca216946 (diff)
downloadhqemu-4951f65bd35ea57c28d8af2d20e1c93087e73f0c.zip
hqemu-4951f65bd35ea57c28d8af2d20e1c93087e73f0c.tar.gz
Migration via unix sockets.
Implement migration via unix sockets. While you can fake this using exec and netcat, this involves forking another process and is generally not very nice. By doing this directly in qemu, we can avoid the copy through the external nc command. This is useful for implementations (such as libvirt) that want to do "secure" migration; we pipe the data on the sending side into the unix socket, libvirt picks it up, encrypts it, and transports it, and then on the remote side libvirt decrypts it, dumps it to another unix socket, and feeds it into qemu. The implementation is straightforward and looks very similar to migration-exec.c and migration-tcp.c Signed-off-by: Chris Lalancette <clalance@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e595cb5..d152b6b 100644
--- a/Makefile
+++ b/Makefile
@@ -93,7 +93,7 @@ obj-y += qdev.o qdev-properties.o ssi.o
obj-$(CONFIG_BRLAPI) += baum.o
obj-$(CONFIG_WIN32) += tap-win32.o
-obj-$(CONFIG_POSIX) += migration-exec.o
+obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
OpenPOWER on IntegriCloud