Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qocspresponse_p.h
Go to the documentation of this file.
1// Copyright (C) 2011 Richard J. Moore <rich@kde.org>
2// Copyright (C) 2019 The Qt Company Ltd.
3// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
4
5#ifndef QOCSPRESPONSE_P_H
6#define QOCSPRESPONSE_P_H
7
8#include <private/qtnetworkglobal_p.h>
9
10#include <qsslcertificate.h>
11#include <qocspresponse.h>
12
13#include <qshareddata.h>
14
15//
16// W A R N I N G
17// -------------
18//
19// This file is not part of the Qt API. It exists purely as an
20// implementation detail. This header file may change from version to
21// version without notice, or even be removed.
22//
23// We mean it.
24//
25
27
38
39inline bool operator==(const QOcspResponsePrivate &lhs, const QOcspResponsePrivate &rhs)
40{
41 return lhs.certificateStatus == rhs.certificateStatus
43 && lhs.signerCert == rhs.signerCert
44 && lhs.subjectCert == rhs.subjectCert;
45}
46
48
49#endif // QOCSPRESPONSE_P_H
QOcspRevocationReason revocationReason
QSslCertificate subjectCert
QSslCertificate signerCert
QOcspCertificateStatus certificateStatus
\inmodule QtCore
Definition qshareddata.h:19
The QSslCertificate class provides a convenient API for an X509 certificate.
Combined button and popup list for selecting options.
QOcspRevocationReason
QOcspCertificateStatus
bool operator==(const QOcspResponsePrivate &lhs, const QOcspResponsePrivate &rhs)