diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-03-02 18:13:13 +0000 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2015-12-18 12:18:31 +0000 |
commit | ed8ee42c4063809495d9eed738a26957b6dfe692 (patch) | |
tree | 4332e40f84a3272e2fe8d424354f11c890f9b0c0 /io/Makefile.objs | |
parent | d6e48869a41b61bb2f4eb0a787c08225630feb9e (diff) |
io: add QIOChannelTLS class
Add a QIOChannel subclass that can run the TLS protocol over
the top of another QIOChannel instance. The object provides a
simplified API to perform the handshake when starting the TLS
session. The layering of TLS over the underlying channel does
not have to be setup immediately. It is possible to take an
existing QIOChannel that has done some handshake and then swap
in the QIOChannelTLS layer. This allows for use with protocols
which start TLS right away, and those which start plain text
and then negotiate TLS.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'io/Makefile.objs')
-rw-r--r-- | io/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/io/Makefile.objs b/io/Makefile.objs index 3d2f232480..a48011b726 100644 --- a/io/Makefile.objs +++ b/io/Makefile.objs @@ -1,5 +1,6 @@ io-obj-y = channel.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 += task.o |