diff --git a/src/accounts/xmpp/sip/TomahawkXmppMessage.h b/src/accounts/xmpp/sip/TomahawkXmppMessage.h index 9ea943b8b..d2e54b29b 100644 --- a/src/accounts/xmpp/sip/TomahawkXmppMessage.h +++ b/src/accounts/xmpp/sip/TomahawkXmppMessage.h @@ -36,11 +36,19 @@ class ACCOUNTDLLEXPORT TomahawkXmppMessage : public Jreen::Payload TomahawkXmppMessage(const QList& sipInfo); ~TomahawkXmppMessage(); - //! The SipInfo objects that are wrapped in this XmppMessage + /** + * The SipInfo objects that are wrapped in this XmppMessage + */ const QList sipInfo() const; - //! The name of the peer contained in this message + + /** + * The name of the peer contained in this message + */ const QString key() const; - //! The name of the peer contained in this message + + /** + * The name of the peer contained in this message + */ const QString uniqname() const; private: diff --git a/src/accounts/xmpp/sip/TomahawkXmppMessageFactory.h b/src/accounts/xmpp/sip/TomahawkXmppMessageFactory.h index ba06f7a2c..e4e59e531 100644 --- a/src/accounts/xmpp/sip/TomahawkXmppMessageFactory.h +++ b/src/accounts/xmpp/sip/TomahawkXmppMessageFactory.h @@ -43,13 +43,24 @@ private: enum State { AtNowhere, AtTransport, AtCandidate } m_state; - //! All the provided Sip informations + /** + * All the provided Sip informations + */ QList m_sipInfo; - //! The current parsing depth + + /** + * The current parsing depth + */ int m_depth; - //! The unique name of the peer + + /** + * The unique name of the peer + */ QString m_uniqname; - //! The authentication key of the peer + + /** + * The authentication key of the peer + */ QString m_key; }; diff --git a/src/libtomahawk/network/QTcpSocketExtra.h b/src/libtomahawk/network/QTcpSocketExtra.h index d42e1a5e7..366f93688 100644 --- a/src/libtomahawk/network/QTcpSocketExtra.h +++ b/src/libtomahawk/network/QTcpSocketExtra.h @@ -57,9 +57,14 @@ public: bool _disowned; msg_ptr _msg; - //! Set a time limit for establishing a connection. + /** + * Set a time limit for establishing a connection. + */ void setConnectTimeout( qint32 timeout ) { m_connectTimeout = timeout; } - //! Get the current timeout for establishing a connection. + + /** + * Get the current timeout for establishing a connection. + */ qint32 connectTimeout() const { return m_connectTimeout; } private slots: @@ -73,9 +78,14 @@ private slots: this->disconnectFromHost(); } private: - //! How long we will wait for a connection to establish + /** + * How long we will wait for a connection to establish + */ qint32 m_connectTimeout; - //! Timer to measure the connection initialisation + + /** + * Timer to measure the connection initialisation + */ QTimer* m_connectTimer; }; diff --git a/src/libtomahawk/network/Servent.h b/src/libtomahawk/network/Servent.h index 89ecc7f22..61f070039 100644 --- a/src/libtomahawk/network/Servent.h +++ b/src/libtomahawk/network/Servent.h @@ -94,13 +94,25 @@ public: void reverseOfferRequest( ControlConnection* orig_conn, const QString &theirdbid, const QString& key, const QString& theirkey ); bool visibleExternally() const { return (!m_externalHostname.isNull()) || (m_externalAddresses.length() > 0); } - //! The port this Peer listens directly (per default) + + /** + * The port this Peer listens directly (per default) + */ int port() const { return m_port; } - //! The IP addresses this Peer listens directly (per default) + + /** + * The IP addresses this Peer listens directly (per default) + */ QList< QHostAddress > addresses() const { return m_externalAddresses; } - //! An additional address this peer listens to, e.g. via UPnP. + + /** + * An additional address this peer listens to, e.g. via UPnP. + */ QString additionalAddress() const { return m_externalHostname; } - //! An additional port this peer listens to, e.g. via UPnP (only in combination with additionalAddress. + + /** + * An additional port this peer listens to, e.g. via UPnP (only in combination with additionalAddress. + */ int additionalPort() const { return m_externalPort; } static bool isIPWhitelisted( QHostAddress ip ); @@ -155,13 +167,24 @@ private: QMap< QString, QPointer< Connection > > m_offers; QStringList m_connectedNodes; - //! The external port used by all address except those obtained via UPnP or the static configuration option + /** + * The external port used by all address except those obtained via UPnP or the static configuration option + */ int m_port; - //! Either the static set or the UPnP set external port + + /** + * Either the static set or the UPnP set external port + */ int m_externalPort; - //! All available external IPs + + /** + * All available external IPs + */ QList m_externalAddresses; - //! Either the static set or the UPnP set external host + + /** + * Either the static set or the UPnP set external host + */ QString m_externalHostname; bool m_ready; diff --git a/src/libtomahawk/sip/PeerInfo.h b/src/libtomahawk/sip/PeerInfo.h index 0f11cf070..b8b78d9d8 100644 --- a/src/libtomahawk/sip/PeerInfo.h +++ b/src/libtomahawk/sip/PeerInfo.h @@ -112,10 +112,14 @@ public: void setData( const QVariant& data ); const QVariant data() const; - //! Get the node id of this peer + /** + * Get the node id of this peer + */ const QString nodeId() const; - //! Get the authentication key for this host + /** + * Get the authentication key for this host + */ const QString key() const; signals: diff --git a/src/libtomahawk/sip/SipPlugin.h b/src/libtomahawk/sip/SipPlugin.h index e8495a328..5a9349c57 100644 --- a/src/libtomahawk/sip/SipPlugin.h +++ b/src/libtomahawk/sip/SipPlugin.h @@ -70,7 +70,10 @@ public slots: virtual void configurationChanged() = 0; virtual void addContact( const QString& peerId, const QString& msg = QString() ) = 0; - //! Send a list of SipInfos to all contacts. + + /** + * Send a list of SipInfos to all contacts. + */ virtual void sendSipInfo( const Tomahawk::peerinfo_ptr& receiver, const QList& info ) = 0; signals: