mirror of
https://github.com/NohamR/RMHook-Win.git
synced 2026-05-25 12:27:12 +00:00
64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
#ifndef QHSTSPOLICY_H
|
|
#define QHSTSPOLICY_H
|
|
|
|
#include <QtNetwork/qtnetworkglobal.h>
|
|
|
|
#include <QtCore/qshareddata.h>
|
|
#include <QtCore/qflags.h>
|
|
#include <QtCore/qurl.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QHstsPolicyPrivate;
|
|
class QDateTime;
|
|
class QString;
|
|
class Q_NETWORK_EXPORT QHstsPolicy
|
|
{
|
|
public:
|
|
enum PolicyFlag
|
|
{
|
|
IncludeSubDomains = 1
|
|
};
|
|
Q_DECLARE_FLAGS(PolicyFlags, PolicyFlag)
|
|
|
|
QHstsPolicy();
|
|
QHstsPolicy(const QDateTime &expiry, PolicyFlags flags, const QString &host,
|
|
QUrl::ParsingMode mode = QUrl::DecodedMode);
|
|
QHstsPolicy(const QHstsPolicy &rhs);
|
|
QHstsPolicy &operator=(const QHstsPolicy &rhs);
|
|
QHstsPolicy &operator=(QHstsPolicy &&other) noexcept { swap(other); return *this; }
|
|
~QHstsPolicy();
|
|
|
|
void swap(QHstsPolicy &other) noexcept { d.swap(other.d); }
|
|
|
|
void setHost(const QString &host, QUrl::ParsingMode mode = QUrl::DecodedMode);
|
|
QString host(QUrl::ComponentFormattingOptions options = QUrl::FullyDecoded) const;
|
|
void setExpiry(const QDateTime &expiry);
|
|
QDateTime expiry() const;
|
|
void setIncludesSubDomains(bool include);
|
|
bool includesSubDomains() const;
|
|
|
|
bool isExpired() const;
|
|
|
|
private:
|
|
QSharedDataPointer<QHstsPolicyPrivate> d;
|
|
|
|
bool isEqual(const QHstsPolicy &other) const;
|
|
friend bool operator==(const QHstsPolicy &lhs, const QHstsPolicy &rhs)
|
|
{ return lhs.isEqual(rhs); }
|
|
friend bool operator!=(const QHstsPolicy &lhs, const QHstsPolicy &rhs)
|
|
{ return !lhs.isEqual(rhs); }
|
|
};
|
|
|
|
Q_DECLARE_SHARED(QHstsPolicy)
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(QHstsPolicy::PolicyFlags)
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // QHSTSPOLICY_H
|