c767ae62b9
Depending on what object a file descriptor refers to a different type of IO channel will be needed - either a QIOChannelFile or a QIOChannelSocket. Introduce a qio_channel_new_fd() method which will return the appropriate channel implementation. Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
11 lines
266 B
Makefile
11 lines
266 B
Makefile
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 += task.o
|