aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppStun.h
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2021-03-27 16:09:32 +0100
committerLinus Jahn <lnj@kaidan.im>2021-03-28 00:09:13 +0100
commitd2ffa95c4df9aeadea6acaac30471ffc55b72d98 (patch)
treea354542d6f806138521af9e94fb711908d052b52 /src/base/QXmppStun.h
parent08a2f244e0063b449fa222db048c212c6c021c13 (diff)
downloadqxmpp-d2ffa95c4df9aeadea6acaac30471ffc55b72d98.tar.gz
doc: Fix warning from QXmppStun* classes
Diffstat (limited to 'src/base/QXmppStun.h')
-rw-r--r--src/base/QXmppStun.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/base/QXmppStun.h b/src/base/QXmppStun.h
index 4517254f..7bff1fab 100644
--- a/src/base/QXmppStun.h
+++ b/src/base/QXmppStun.h
@@ -37,11 +37,11 @@ class QXmppIceComponentPrivate;
class QXmppIceConnectionPrivate;
class QXmppIcePrivate;
+///
/// \internal
///
/// The QXmppStunMessage class represents a STUN message.
///
-
class QXMPP_EXPORT QXmppStunMessage
{
public:
@@ -158,10 +158,11 @@ private:
QString m_username;
};
+///
/// \brief The QXmppIceComponent class represents a piece of a media stream
/// requiring a single transport address, as defined by RFC 5245
/// (Interactive Connectivity Establishment).
-
+///
class QXMPP_EXPORT QXmppIceComponent : public QXmppLoggable
{
Q_OBJECT
@@ -196,7 +197,7 @@ Q_SIGNALS:
/// \brief This signal is emitted when a data packet is received.
void datagramReceived(const QByteArray &datagram);
- /// \internal This signal is emitted when the gathering state of local candidates changes.
+ /// This signal is emitted when the gathering state of local candidates changes.
void gatheringStateChanged();
/// \brief This signal is emitted when the list of local candidates changes.
@@ -210,6 +211,7 @@ private:
friend class QXmppIceConnection;
};
+///
/// \brief The QXmppIceConnection class represents a set of UDP sockets
/// capable of performing Interactive Connectivity Establishment (RFC 5245).
///
@@ -235,9 +237,8 @@ private:
/// connection->setRemoteUser("bar");
/// connection->addRemoteCandidate(..);
/// connection->connectToHost();
-///
/// \endcode
-
+///
class QXMPP_EXPORT QXmppIceConnection : public QXmppLoggable
{
Q_OBJECT