aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2017-01-26 18:26:44 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2017-06-02 11:33:53 +0400
commit4d019e9fa230838d987042f1448cf137f7e9712a (patch)
treed4f1d9ccd89fd9125410e3b1372906dae8b01885
parent69703119b7993e0633dedd904f9b0034a63272d5 (diff)
downloadslirp-4d019e9fa230838d987042f1448cf137f7e9712a.zip
slirp-4d019e9fa230838d987042f1448cf137f7e9712a.tar.gz
slirp-4d019e9fa230838d987042f1448cf137f7e9712a.tar.bz2
char: move CharBackend handling in char-fe unit
Move all the frontend struct and methods to a seperate unit. This avoids accidentally mixing backend and frontend calls, and helps with readabilty. Make qemu_chr_replay() a macro shared by both char and char-fe. Export qemu_chr_write(), and use a macro for qemu_chr_write_all() (nb: yes, CharBackend is for char frontend :) Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
-rw-r--r--slirp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp.c b/slirp.c
index aa0586a..4362aeb 100644
--- a/slirp.c
+++ b/slirp.c
@@ -25,7 +25,7 @@
#include "qemu-common.h"
#include "qemu/timer.h"
#include "qemu/error-report.h"
-#include "chardev/char.h"
+#include "chardev/char-fe.h"
#include "slirp.h"
#include "hw/hw.h"
#include "qemu/cutils.h"