The QHstsPolicy class specifies that a host supports HTTP Strict Transport Security policy (HSTS). 更多...
| 頭: | #include <QHstsPolicy> |
| qmake: | QT += network |
| Since: | Qt 5.9 |
| enum | PolicyFlag { IncludeSubDomains } |
| flags | PolicyFlags |
| QHstsPolicy () | |
| QHstsPolicy (const QDateTime & expiry , QHstsPolicy::PolicyFlags flags , const QString & host , QUrl::ParsingMode mode = QUrl::DecodedMode) | |
| QHstsPolicy (const QHstsPolicy & other ) | |
| ~QHstsPolicy () | |
| QDateTime | expiry () const |
| QString | host (QUrl::ComponentFormattingOptions options = QUrl::FullyDecoded) const |
| bool | includesSubDomains () const |
| bool | isExpired () const |
| void | setExpiry (const QDateTime & expiry ) |
| void | setHost (const QString & host , QUrl::ParsingMode mode = QUrl::DecodedMode) |
| void | setIncludesSubDomains (bool 包括 ) |
| void | swap (QHstsPolicy & other ) |
| QHstsPolicy & | operator= (const QHstsPolicy & other ) |
| QHstsPolicy & | operator= (QHstsPolicy && other ) |
The QHstsPolicy class specifies that a host supports HTTP Strict Transport Security policy (HSTS).
HSTS policy defines a period of time during which QNetworkAccessManager should only access a host in a secure fashion. HSTS policy is defined by RFC6797.
You can set expiry time and host name for this policy, and control whether it applies to subdomains, either in the constructor or by calling setExpiry (), setHost () and setIncludesSubdomains().
另請參閱 QNetworkAccessManager::setStrictTransportSecurityEnabled ().
| 常量 | 值 | 描述 |
|---|---|---|
QHstsPolicy::IncludeSubDomains
|
1
|
Indicates whether a policy must include subdomains |
The PolicyFlags type is a typedef for QFlags <PolicyFlag>. It stores an OR combination of PolicyFlag values.
Constructs an invalid (expired) policy with empty host name and subdomains not included.
構造 QHstsPolicy with expiry (in UTC); flags is a value indicating whether this policy must also include subdomains, host data is interpreted according to mode .
另請參閱 QUrl::setHost (), QUrl::ParsingMode ,和 QHstsPolicy::PolicyFlag .
創建副本為 other 對象。
析構函數。
Returns the expiration date for the policy (in UTC).
另請參閱 setExpiry ().
Returns a host for a given policy, formatted according to options .
另請參閱 setHost (), QUrl::host (),和 QUrl::ComponentFormattingOptions .
返迴
true
if this policy also includes subdomains.
另請參閱 setIncludesSubDomains ().
返迴
true
if this policy has a valid expiration date and this date is greater than QDateTime::currentGetDateTimeUtc().
另請參閱 setExpiry () 和 expiry ().
Sets the expiration date for the policy (in UTC) to expiry .
另請參閱 expiry ().
Sets a host, host data is interpreted according to mode 參數。
另請參閱 host (), QUrl::setHost (),和 QUrl::ParsingMode .
Sets whether subdomains are included for this policy to 包括 .
另請參閱 includesSubDomains ().
Swaps this policy with the other policy.
Copy-assignment operator, makes a copy of other .
移動賦值運算符。