diff options
author | Mikkel Krautz <mikkel@krautz.dk> | 2015-02-13 11:57:41 +0100 |
---|---|---|
committer | Mikkel Krautz <mikkel@krautz.dk> | 2015-02-13 16:48:43 +0000 |
commit | bf3246fdff321b4f07f88c697102c8ef5a7969d0 (patch) | |
tree | 3bf1a7d41fd7cdb57c5707c28557a21cc9a3c12a /src/network/ssl/qssl.cpp | |
parent | 651329adb5e64b18a005e900e1b9c5e95d70258c (diff) | |
download | qtbase-bf3246fdff321b4f07f88c697102c8ef5a7969d0.tar.gz |
QSsl: add TlsV1_0OrLater, TlsV1_1OrLater, TlsV1_2OrLater
Change-Id: I90b99fb515dcf559824f673d2304081238541c4c
Reviewed-by: Richard J. Moore <rich@kde.org>
Diffstat (limited to 'src/network/ssl/qssl.cpp')
-rw-r--r-- | src/network/ssl/qssl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/network/ssl/qssl.cpp b/src/network/ssl/qssl.cpp index e5bee35221..26381fcb8e 100644 --- a/src/network/ssl/qssl.cpp +++ b/src/network/ssl/qssl.cpp @@ -113,9 +113,12 @@ Q_LOGGING_CATEGORY(lcSsl, "qt.network.ssl"); \value SslV3 SSLv3 \value SslV2 SSLv2 \value TlsV1_0 TLSv1.0 + \value TlsV1_0OrLater TLSv1.0 and later versions. This option is not available when using the WinRT backend due to platform limitations. \value TlsV1 Obsolete, means the same as TlsV1_0 \value TlsV1_1 TLSv1.1 + \value TlsV1_1OrLater TLSv1.1 and later versions. This option is not available when using the WinRT backend due to platform limitations. \value TlsV1_2 TLSv1.2 + \value TlsV1_2OrLater TLSv1.2 and later versions. This option is not available when using the WinRT backend due to platform limitations. \value UnknownProtocol The cipher's protocol cannot be determined. \value AnyProtocol The socket understands SSLv2, SSLv3, and TLSv1.0. This value is used by QSslSocket only. |