blob: 69fbedf2b80311d62d4446c996261db7b07c3459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef QHTTPSERVERCONFIGURATION_H
#define QHTTPSERVERCONFIGURATION_H
#include <QtHttpServer/qthttpserverglobal.h>
#include <QtCore/qshareddata.h>
#include <QtCore/qlist.h>
#include <QtNetwork/qhostaddress.h>
#include <chrono>
QT_BEGIN_NAMESPACE
class QHttpServerConfigurationPrivate;
QT_DECLARE_QESDP_SPECIALIZATION_DTOR(QHttpServerConfigurationPrivate)
class QHttpServerConfiguration
{
public:
Q_HTTPSERVER_EXPORT QHttpServerConfiguration();
Q_HTTPSERVER_EXPORT QHttpServerConfiguration(const QHttpServerConfiguration &other);
QHttpServerConfiguration(QHttpServerConfiguration &&other) noexcept = default;
Q_HTTPSERVER_EXPORT QHttpServerConfiguration &operator = (const QHttpServerConfiguration &other);
QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_PURE_SWAP(QHttpServerConfiguration)
void swap(QHttpServerConfiguration &other) noexcept { d.swap(other.d); }
Q_HTTPSERVER_EXPORT ~QHttpServerConfiguration();
Q_HTTPSERVER_EXPORT void setRateLimitPerSecond(quint32 maxRequests);
Q_HTTPSERVER_EXPORT quint32 rateLimitPerSecond() const;
Q_HTTPSERVER_EXPORT void setKeepAliveTimeout(std::chrono::seconds timeout);
Q_HTTPSERVER_EXPORT std::chrono::seconds keepAliveTimeout() const;
Q_HTTPSERVER_EXPORT void setWhitelist(const QList<std::pair<QHostAddress, int>> &subnetList);
Q_HTTPSERVER_EXPORT QList<std::pair<QHostAddress, int>> whitelist() const;
Q_HTTPSERVER_EXPORT void setBlacklist(const QList<std::pair<QHostAddress, int>> &subnetList);
Q_HTTPSERVER_EXPORT QList<std::pair<QHostAddress, int>> blacklist() const;
private:
QExplicitlySharedDataPointer<QHttpServerConfigurationPrivate> d;
friend Q_HTTPSERVER_EXPORT bool
comparesEqual(const QHttpServerConfiguration &lhs, const QHttpServerConfiguration &rhs) noexcept;
Q_DECLARE_EQUALITY_COMPARABLE(QHttpServerConfiguration)
};
Q_DECLARE_SHARED(QHttpServerConfiguration)
QT_END_NAMESPACE
#endif // QHTTPSERVERCONFIGURATION_H
|