summaryrefslogtreecommitdiff
path: root/include/io
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-16 21:28:51 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2016-06-29 16:49:41 +0200
commit3fa27a9a1e20e8fb2bf4358d6873177d5d5c049a (patch)
tree381b175cd6b7ce9be18968dcc0139c49a7ebdcc4 /include/io
parentc1111a24a3358ecd2f17be7c8b117cfe8bc5e5f8 (diff)
downloadqemu-3fa27a9a1e20e8fb2bf4358d6873177d5d5c049a.tar.gz
socket: add listen feature
Add a flag to tell whether the channel socket is listening. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <1466105332-10285-3-git-send-email-marcandre.lureau@redhat.com> Acked-by: Daniel P. Berrange <berrange@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Diffstat (limited to 'include/io')
-rw-r--r--include/io/channel.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/io/channel.h b/include/io/channel.h
index d37acd29e0..e52f059310 100644
--- a/include/io/channel.h
+++ b/include/io/channel.h
@@ -42,6 +42,7 @@ typedef enum QIOChannelFeature QIOChannelFeature;
enum QIOChannelFeature {
QIO_CHANNEL_FEATURE_FD_PASS = (1 << 0),
QIO_CHANNEL_FEATURE_SHUTDOWN = (1 << 1),
+ QIO_CHANNEL_FEATURE_LISTEN = (1 << 2),
};