mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
a9cfeb33bb
Introduce a new QEMUFile implementation that is based on the QIOChannel objects. This impl is different from existing impls in that there is no file descriptor that can be made available, as some channels may be based on higher level protocols such as TLS. Although the QIOChannel based implementation can trivially provide a bi-directional stream, initially we have separate functions for opening input & output directions to fit with the expectation of the current QEMUFile interface. Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Message-Id: <1461751518-12128-9-git-send-email-berrange@redhat.com> Signed-off-by: Amit Shah <amit.shah@redhat.com>
12 lines
351 B
Text
12 lines
351 B
Text
common-obj-y += migration.o tcp.o
|
|
common-obj-y += vmstate.o
|
|
common-obj-y += qemu-file.o qemu-file-buf.o qemu-file-unix.o qemu-file-stdio.o
|
|
common-obj-y += qemu-file-channel.o
|
|
common-obj-y += xbzrle.o postcopy-ram.o
|
|
common-obj-y += qjson.o
|
|
|
|
common-obj-$(CONFIG_RDMA) += rdma.o
|
|
common-obj-$(CONFIG_POSIX) += exec.o unix.o fd.o
|
|
|
|
common-obj-y += block.o
|
|
|