mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 22:41:07 +00:00
530473924d
The existing QIOChannelSocket class provides the ability to listen on a single socket at a time. This patch introduces a QIONetListener class that provides a higher level API concept around listening for network services, allowing for listening on multiple sockets. Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
12 lines
320 B
Text
12 lines
320 B
Text
io-obj-y = channel.o
|
|
io-obj-y += channel-buffer.o
|
|
io-obj-y += channel-command.o
|
|
io-obj-y += channel-file.o
|
|
io-obj-y += channel-socket.o
|
|
io-obj-y += channel-tls.o
|
|
io-obj-y += channel-watch.o
|
|
io-obj-y += channel-websock.o
|
|
io-obj-y += channel-util.o
|
|
io-obj-y += dns-resolver.o
|
|
io-obj-y += net-listener.o
|
|
io-obj-y += task.o
|