diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-07-27 01:15:17 +0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-07-29 00:33:48 +0300 |
commit | 6b6723c3b508403309aa21c4fcbe515bd1edfd74 (patch) | |
tree | a808a6c17627269e2128e53757cf109675bb8273 /qemu-char.c | |
parent | 8695de0fcf739b2071018d933b407ed8c16f40e8 (diff) |
char: add chr_wait_connected callback
A function to wait on the backend to be connected, to be used in the
following patches.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'qemu-char.c')
-rw-r--r-- | qemu-char.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qemu-char.c b/qemu-char.c index 1274f50e00..6eba615818 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -3139,6 +3139,15 @@ static gboolean tcp_chr_accept(QIOChannel *channel, return TRUE; } +int qemu_chr_wait_connected(CharDriverState *chr, Error **errp) +{ + if (chr->chr_wait_connected) { + return chr->chr_wait_connected(chr, errp); + } + + return 0; +} + static void tcp_chr_close(CharDriverState *chr) { TCPCharDriver *s = chr->opaque; |