aboutsummaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-07-21 18:34:27 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2012-07-21 18:34:27 +0200
commit175fb8b883af4edfcfb4ff3dd2c1fb29dfdf3ceb (patch)
treebcb07029ee5318c3413dd9a5b02710591ae90d63 /src/server
parent255c1aabcd8d4e881f06ac55eadfc20274936df0 (diff)
downloadqxmpp-175fb8b883af4edfcfb4ff3dd2c1fb29dfdf3ceb.tar.gz
doc fixes
Diffstat (limited to 'src/server')
-rw-r--r--src/server/QXmppDialback.cpp3
-rw-r--r--src/server/QXmppIncomingClient.cpp2
-rw-r--r--src/server/QXmppOutgoingServer.cpp3
3 files changed, 7 insertions, 1 deletions
diff --git a/src/server/QXmppDialback.cpp b/src/server/QXmppDialback.cpp
index b96504f0..d77739ff 100644
--- a/src/server/QXmppDialback.cpp
+++ b/src/server/QXmppDialback.cpp
@@ -82,6 +82,7 @@ void QXmppDialback::setType(const QString &type)
m_type = type;
}
+/// \cond
bool QXmppDialback::isDialback(const QDomElement &element)
{
return element.namespaceURI() == ns_server_dialback &&
@@ -114,4 +115,4 @@ void QXmppDialback::toXml(QXmlStreamWriter *xmlWriter) const
xmlWriter->writeCharacters(m_key);
xmlWriter->writeEndElement();
}
-
+/// \endcond
diff --git a/src/server/QXmppIncomingClient.cpp b/src/server/QXmppIncomingClient.cpp
index 6a557548..01990960 100644
--- a/src/server/QXmppIncomingClient.cpp
+++ b/src/server/QXmppIncomingClient.cpp
@@ -179,6 +179,7 @@ void QXmppIncomingClient::setPasswordChecker(QXmppPasswordChecker *checker)
d->passwordChecker = checker;
}
+/// \cond
void QXmppIncomingClient::handleStream(const QDomElement &streamElement)
{
if (d->idleTimer->interval())
@@ -387,6 +388,7 @@ void QXmppIncomingClient::handleStanza(const QDomElement &nodeRecv)
}
}
}
+/// \endcond
void QXmppIncomingClient::onDigestReply()
{
diff --git a/src/server/QXmppOutgoingServer.cpp b/src/server/QXmppOutgoingServer.cpp
index 1cf5b965..75d9c889 100644
--- a/src/server/QXmppOutgoingServer.cpp
+++ b/src/server/QXmppOutgoingServer.cpp
@@ -134,6 +134,8 @@ void QXmppOutgoingServer::_q_dnsLookupFinished()
socket()->connectToHost(host, port);
}
+/// \cond
+
void QXmppOutgoingServer::handleStart()
{
QXmppStream::handleStart();
@@ -233,6 +235,7 @@ void QXmppOutgoingServer::handleStanza(const QDomElement &stanza)
}
}
+/// \endcond
/// Returns true if the socket is connected and authentication succeeded.
///