QXmpp Version: 0.9.3
QXmppIncomingClient.h
1/*
2 * Copyright (C) 2008-2014 The QXmpp developers
3 *
4 * Author:
5 * Jeremy Lainé
6 *
7 * Source:
8 * https://github.com/qxmpp-project/qxmpp
9 *
10 * This file is a part of QXmpp library.
11 *
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
16 *
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
21 *
22 */
23
24#ifndef QXMPPINCOMINGCLIENT_H
25#define QXMPPINCOMINGCLIENT_H
26
27#include "QXmppStream.h"
28
29class QXmppIncomingClientPrivate;
31
34
38
39class QXMPP_EXPORT QXmppIncomingClient : public QXmppStream
40{
41 Q_OBJECT
42
43public:
44 QXmppIncomingClient(QSslSocket *socket, const QString &domain, QObject *parent = 0);
46
47 bool isConnected() const;
48 QString jid() const;
49
50 void setInactivityTimeout(int secs);
51 void setPasswordChecker(QXmppPasswordChecker *checker);
52
53signals:
55 void elementReceived(const QDomElement &element);
56
57protected:
59 void handleStream(const QDomElement &element);
60 void handleStanza(const QDomElement &element);
62
63private slots:
64 void onDigestReply();
65 void onPasswordReply();
66 void onSocketDisconnected();
67 void onTimeout();
68
69private:
70 Q_DISABLE_COPY(QXmppIncomingClient)
71 QXmppIncomingClientPrivate* d;
72 friend class QXmppIncomingClientPrivate;
73};
74
75#endif
Interface for password checkers.
Definition: QXmppIncomingClient.h:40
void elementReceived(const QDomElement &element)
This signal is emitted when an element is received.
The QXmppPasswordChecker class represents an abstract password checker.
Definition: QXmppPasswordChecker.h:102
The QXmppStream class is the base class for all XMPP streams.
Definition: QXmppStream.h:42
virtual bool isConnected() const
Definition: QXmppStream.cpp:114
virtual void handleStream(const QDomElement &element)=0
virtual void handleStanza(const QDomElement &element)=0