summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Moore <rich@kde.org>2012-05-06 18:03:02 +0100
committerQt by Nokia <qt-info@nokia.com>2012-05-06 19:12:43 +0200
commiteee3798f6f69b99dbe0c6a95ca0a4011a8776c19 (patch)
treec3981e92851c3c8ce9634eac024f7fe2a8a3dc58
parent54d9fd61e13f7369c831ab76503f7619d60c0cfd (diff)
Fix more qdoc warnings in qtnetwork.
Change-Id: Ibfac6236e9f68b41e34e67ef03cfd590582439be Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
-rw-r--r--src/network/access/qnetworkcookie.cpp1
-rw-r--r--src/network/access/qnetworkcookiejar.cpp2
-rw-r--r--src/network/socket/qabstractsocket.cpp12
-rw-r--r--src/network/ssl/qssl.cpp4
-rw-r--r--src/network/ssl/qsslcertificateextension.cpp3
-rw-r--r--src/network/ssl/qsslsocket.cpp3
6 files changed, 17 insertions, 8 deletions
diff --git a/src/network/access/qnetworkcookie.cpp b/src/network/access/qnetworkcookie.cpp
index 7299633c36..b3324a1992 100644
--- a/src/network/access/qnetworkcookie.cpp
+++ b/src/network/access/qnetworkcookie.cpp
@@ -1059,6 +1059,7 @@ QList<QNetworkCookie> QNetworkCookiePrivate::parseSetCookieHeaderLine(const QByt
/*!
\since 5.0
This functions normalizes the path and domain of the cookie if they were previously empty.
+ The \a url parameter is used to determine the correct domain and path.
*/
void QNetworkCookie::normalize(const QUrl &url)
{
diff --git a/src/network/access/qnetworkcookiejar.cpp b/src/network/access/qnetworkcookiejar.cpp
index 980b02e2ae..9e5dfe0371 100644
--- a/src/network/access/qnetworkcookiejar.cpp
+++ b/src/network/access/qnetworkcookiejar.cpp
@@ -316,6 +316,8 @@ bool QNetworkCookieJar::deleteCookie(const QNetworkCookie &cookie)
/*!
\since 5.0
Returns true if the domain and path of \a cookie are valid, false otherwise.
+ The \a url parameter is used to determine if the domain specified in the cookie
+ is allowed.
*/
bool QNetworkCookieJar::validateCookie(const QNetworkCookie &cookie, const QUrl &url) const
{
diff --git a/src/network/socket/qabstractsocket.cpp b/src/network/socket/qabstractsocket.cpp
index a6eb3626a0..9d95d3a70e 100644
--- a/src/network/socket/qabstractsocket.cpp
+++ b/src/network/socket/qabstractsocket.cpp
@@ -252,6 +252,7 @@
\value IPv4Protocol IPv4
\value IPv6Protocol IPv6
+ \value AnyIPProtocol Either IPv4 or IPv6
\value UnknownNetworkLayerProtocol Other than IPv4 and IPv6
\sa QHostAddress::protocol()
@@ -339,12 +340,6 @@
\value ClosingState The socket is about to close (data may still
be waiting to be written).
\value ListeningState For internal use only.
- \omitvalue Idle
- \omitvalue HostLookup
- \omitvalue Connecting
- \omitvalue Connected
- \omitvalue Closing
- \omitvalue Connection
\sa QAbstractSocket::state()
*/
@@ -1403,7 +1398,8 @@ QAbstractSocket::PauseModes QAbstractSocket::pauseMode() const
/*!
\since 5.0
- Controls whether to pause upon receiving a notification. The only notification
+ Controls whether to pause upon receiving a notification. The \pauseMode parameter
+ specifies the conditions in which the socket should be paused. The only notification
currently supported is QSslSocket::sslErrors(). If set to PauseOnSslErrors,
data transfer on the socket will be paused and needs to be enabled explicitly
again by calling resume().
@@ -1524,6 +1520,8 @@ bool QAbstractSocket::isValid() const
/*!
Attempts to make a connection to \a hostName on the given \a port.
+ The \a protocol parameter can be used to specify which network
+ protocol to use (eg. IPv4 or IPv6).
The socket is opened in the given \a openMode and first enters
HostLookupState, then performs a host name lookup of \a hostName.
diff --git a/src/network/ssl/qssl.cpp b/src/network/ssl/qssl.cpp
index 9a00b2a077..60679a201f 100644
--- a/src/network/ssl/qssl.cpp
+++ b/src/network/ssl/qssl.cpp
@@ -70,6 +70,10 @@ QT_BEGIN_NAMESPACE
\value Rsa The RSA algorithm.
\value Dsa The DSA algorithm.
+ \value Opaque A key that should be treated as a 'black box' by QSslKey.
+
+ The opaque key facility allows applications to add support for facilities
+ such as PKCS#11 that Qt does not currently offer natively.
*/
/*!
diff --git a/src/network/ssl/qsslcertificateextension.cpp b/src/network/ssl/qsslcertificateextension.cpp
index 8a4e7409bf..fae261a258 100644
--- a/src/network/ssl/qsslcertificateextension.cpp
+++ b/src/network/ssl/qsslcertificateextension.cpp
@@ -133,6 +133,9 @@
QT_BEGIN_NAMESPACE
+/*!
+ Constructs a QSslCertificateExtension.
+ */
QSslCertificateExtension::QSslCertificateExtension()
: d(new QSslCertificateExtensionPrivate)
{
diff --git a/src/network/ssl/qsslsocket.cpp b/src/network/ssl/qsslsocket.cpp
index 3445f13f39..6f031f241c 100644
--- a/src/network/ssl/qsslsocket.cpp
+++ b/src/network/ssl/qsslsocket.cpp
@@ -377,7 +377,8 @@ void QSslSocket::resume()
Starts an encrypted connection to the device \a hostName on \a
port, using \a mode as the \l OpenMode. This is equivalent to
calling connectToHost() to establish the connection, followed by a
- call to startClientEncryption().
+ call to startClientEncryption(). The \a protocol parameter can be
+ used to specify which network protocol to use (eg. IPv4 or IPv6).
QSslSocket first enters the HostLookupState. Then, after entering
either the event loop or one of the waitFor...() functions, it