mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
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>
This commit is contained in:
parent
c1111a24a3
commit
3fa27a9a1e
2 changed files with 8 additions and 0 deletions
|
@ -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),
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue