aboutsummaryrefslogtreecommitdiff
path: root/source/server/QXmppServerConnection.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-08-11 07:31:23 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-08-11 07:31:23 +0000
commit40c39853816cfab113d79682c34bc76a2c79c357 (patch)
treee4d6a184cf565cb87477339ce738299ff9787bc3 /source/server/QXmppServerConnection.cpp
parent551c284e35280b7b91a939fe7352e496ffea402a (diff)
downloadqxmpp-40c39853816cfab113d79682c34bc76a2c79c357.tar.gz
rename "source" directory to "src"
Diffstat (limited to 'source/server/QXmppServerConnection.cpp')
-rw-r--r--source/server/QXmppServerConnection.cpp163
1 files changed, 0 insertions, 163 deletions
diff --git a/source/server/QXmppServerConnection.cpp b/source/server/QXmppServerConnection.cpp
deleted file mode 100644
index 09993e2c..00000000
--- a/source/server/QXmppServerConnection.cpp
+++ /dev/null
@@ -1,163 +0,0 @@
-/*
- * Copyright (C) 2008-2010 The QXmpp developers
- *
- * Authors:
- * Manjeet Dahiya
- * Sjors Gielen
- *
- * Source:
- * http://code.google.com/p/qxmpp
- *
- * This file is a part of QXmpp library.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- */
-
-
-#include "QXmppServerConnection.h"
-#include "QXmppLogger.h"
-#include "QXmppStream.h"
-#include "QXmppMessage.h"
-#include "QXmppUtils.h"
-
-#define QXMPPSERVERCONNECTION_DEBUG
-
-#define ASSERT_CONNECT(a, b, c, d) \
- { bool check = connect(a, b, c, d); \
- Q_ASSERT( check ); }
-
-/**
- * @brief Creates a QXmppServerConnection object.
- *
- * This class is meant for server to server connections, both initiated by this
- * server (in which case the connectToHost method should be used), and
- * initiated by other servers (in which case a QSslSocket should be given to
- * this class). To listen to incoming connections, use QXmppServer.
- *
- * @param socket Server socket if nonzero, ignored if zero
- * @param data Server data to start parsing, only if server socket nonzero
- * @param parent QObject parent of this object
- */
-QXmppServerConnection::QXmppServerConnection(QSslSocket *socket,
- const QByteArray &data, QObject *parent)
-: QObject(parent)
-, m_stream(0)
-{
- Q_ASSERT( socket == 0 || socket->state() == QAbstractSocket::ConnectedState );
-
- //m_stream = new QXmppStream(this);
- //m_stream->setSocket( socket );
-
- ASSERT_CONNECT(m_stream, SIGNAL(messageReceived(const QXmppMessage&)),
- this, SIGNAL(messageReceived(const QXmppMessage&)));
-
- ASSERT_CONNECT(m_stream, SIGNAL(disconnected()),
- this, SIGNAL(disconnected()));
-
- ASSERT_CONNECT(m_stream, SIGNAL(xmppConnected()),
- this, SIGNAL(connected()));
-
- ASSERT_CONNECT(m_stream, SIGNAL(error(QXmppServerConnection::Error)),
- this, SIGNAL(error(QXmppServerConnection::Error)));
-}
-
-/// Destructor, destroys the QXmppServerConnection object.
-///
-
-QXmppServerConnection::~QXmppServerConnection()
-{
-}
-
-/**
- * @brief Attempts to connect to another XMPP server.
- *
- * @param host Hostname of the XMPP server where connection has to be made
- * (e.g. "jabber.org" and "talk.google.com"). It can also be an IP address in
- * the form of a string (e.g. "192.168.1.25").
- * @param domain Domain name of the other side e.g. "gmail.com", "jabber.org".
- * @param port Port number at which the XMPP server is listening. The default
- * value is 5269.
- */
-void QXmppServerConnection::connectToServer(const QString& host, const QString& domain,
- int port)
-{
- disconnect();
- //m_stream->connect( host, domain, port );
-}
-
-/// After successfully connecting to the server use this function to send
-/// stanzas to the server. This function can solely be used to send various kind
-/// of stanzas to the server. QXmppPacket is a parent class of all the stanzas
-/// QXmppMessage, QXmppPresence, QXmppIq, QXmppBind, QXmppRosterIq, QXmppSession
-/// and QXmppVCard.
-///
-/// Following code snippet illustrates how to send a message using this function:
-/// \code
-/// QXmppMessage message(from, to, message);
-/// client.sendPacket(message);
-/// \endcode
-///
-/// \param packet A valid XMPP stanza. It can be an iq, a message or a presence stanza.
-///
-
-void QXmppServerConnection::sendPacket(const QXmppPacket& packet)
-{
- Q_ASSERT( m_stream != 0 );
- m_stream->sendPacket(packet);
-}
-
-/// Disconnects the client and the current presence of client changes to
-/// QXmppPresence::Unavailable and statatus text changes to "Logged out".
-///
-/// \note Make sure that the clientPresence is changed to
-/// QXmppPresence::Available, if you are again calling connectToServer() after
-/// calling the disconnect() function.
-///
-
-void QXmppServerConnection::disconnect()
-{
- Q_ASSERT( m_stream != 0 );
- m_stream->disconnect();
-}
-
-/// Returns the socket error if QXmppServerConnection::Error is QXmppServerConnection::SocketError.
-///
-/// \return QAbstractSocket::SocketError
-///
-
-QAbstractSocket::SocketError QXmppServerConnection::socketError()
-{
- return m_stream->socketError();
-}
-
-/// Returns the XMPP stream error if QXmppServerConnection::Error is QXmppServerConnection::XmppStreamError.
-///
-/// \return QXmppServerConnection::Error::Condition
-///
-
-QXmppStanza::Error::Condition QXmppServerConnection::xmppStreamError()
-{
- return m_stream->xmppStreamError();
-}
-
-/// Return the QXmppLogger associated with the client.
-
-QXmppLogger *QXmppServerConnection::logger()
-{
- return m_stream->logger();
-}
-
-void QXmppServerConnection::setLogger(QXmppLogger *logger)
-{
- m_stream->setLogger(logger);
-}
-