| 1 | /* |
| 2 | This file is part of the KDE libraries |
| 3 | SPDX-FileCopyrightText: 2009 Andreas Hartmetz <ahartmetz@gmail.com> |
| 4 | |
| 5 | SPDX-License-Identifier: LGPL-2.0-or-later |
| 6 | */ |
| 7 | |
| 8 | #ifndef KSSLERRORUIDATA_P_H |
| 9 | #define KSSLERRORUIDATA_P_H |
| 10 | |
| 11 | #include "ksslerroruidata.h" |
| 12 | |
| 13 | #include <QSslCertificate> |
| 14 | #include <QSslError> |
| 15 | #include <QString> |
| 16 | |
| 17 | class Q_DECL_HIDDEN KSslErrorUiData::Private |
| 18 | { |
| 19 | public: |
| 20 | static const KSslErrorUiData::Private *get(const KSslErrorUiData *uiData) |
| 21 | { |
| 22 | return uiData->d.get(); |
| 23 | } |
| 24 | |
| 25 | QList<QSslCertificate> certificateChain; |
| 26 | QList<QSslError> sslErrors; // parallel list to certificateChain |
| 27 | QString ip; |
| 28 | QString host; |
| 29 | QString sslProtocol; |
| 30 | QString cipher; |
| 31 | int usedBits; |
| 32 | int bits; |
| 33 | }; |
| 34 | |
| 35 | #endif // KSSLERRORUIDATA_P_H |
| 36 | |