summaryrefslogtreecommitdiffstats
path: root/src/network
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2017-04-11 12:13:51 +0200
committerNico Vertriest <nico.vertriest@qt.io>2017-04-18 14:18:36 +0000
commitfc2f0fb39008f95133f6fd24662fe92195431808 (patch)
tree397ff7f497abdd1fd582af418390c8df681b646f /src/network
parent8b62673d9f0cf8aea126b3cd2f52686f013d7fe1 (diff)
Doc: add missing doc for parameters
qhstspolicy.cpp:105: warning: Undocumented parameter 'flags' in QHstsPolicy::QHstsPolicy() qhstspolicy.cpp:105: warning: No such parameter 'includeSubDomains' in QHstsPolicy::QHstsPolicy() qnetworkaccessmanager.cpp:732: warning: Undocumented parameter 'knownHosts' in QNetworkAccessManager::addStrictTransportSecurityHosts() Change-Id: I24217d328df12febab30e19e2abd351e87007959 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
Diffstat (limited to 'src/network')
-rw-r--r--src/network/access/qhstspolicy.cpp8
-rw-r--r--src/network/access/qnetworkaccessmanager.cpp2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/network/access/qhstspolicy.cpp b/src/network/access/qhstspolicy.cpp
index 0ea9f3f046..ab4695480b 100644
--- a/src/network/access/qhstspolicy.cpp
+++ b/src/network/access/qhstspolicy.cpp
@@ -103,11 +103,11 @@ QHstsPolicy::QHstsPolicy() : d(new QHstsPolicyPrivate)
}
/*!
- Constructs QHstsPolicy with \a expiry (in UTC); \a includeSubDomains parameter
- defines if this policy must also include subdomains, \a host data is interpreted
- according to \a mode.
+ Constructs QHstsPolicy with \a expiry (in UTC):
+ - \a host data is interpreted according to \a mode;
+ - \a flags selects options to apply to this policy.
- \sa QUrl::setHost(), QUrl::ParsingMode
+ \sa QUrl::setHost(), QUrl::ParsingMode, QHstsPolicy::PolicyFlag
*/
QHstsPolicy::QHstsPolicy(const QDateTime &expiry, PolicyFlags flags,
const QString &host, QUrl::ParsingMode mode)
diff --git a/src/network/access/qnetworkaccessmanager.cpp b/src/network/access/qnetworkaccessmanager.cpp
index d898f93403..d57acc2f6b 100644
--- a/src/network/access/qnetworkaccessmanager.cpp
+++ b/src/network/access/qnetworkaccessmanager.cpp
@@ -739,7 +739,7 @@ bool QNetworkAccessManager::isStrictTransportSecurityEnabled() const
\note While processing HTTP responses, QNetworkAccessManager can also update
the HSTS cache, removing or updating exitsting policies or introducing new
- known hosts. The current implementation thus is server-driven, client code
+ \a knownHosts. The current implementation thus is server-driven, client code
can provide QNetworkAccessManager with previously known or discovered
policies, but this information can be overridden by "Strict-Transport-Security"
response headers.