QXmpp  Version:1.0.0
QXmppIncomingClient.h
1 /*
2  * Copyright (C) 2008-2019 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 
29 class QXmppIncomingClientPrivate;
31 
34 
38 
39 class QXMPP_EXPORT QXmppIncomingClient : public QXmppStream
40 {
41  Q_OBJECT
42 
43 public:
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 
53 signals:
55  void elementReceived(const QDomElement &element);
56 
57 protected:
59  void handleStream(const QDomElement &element);
60  void handleStanza(const QDomElement &element);
62 
63 private slots:
64  void onDigestReply();
65  void onPasswordReply();
66  void onSocketDisconnected();
67  void onTimeout();
68 
69 private:
70  Q_DISABLE_COPY(QXmppIncomingClient)
71  QXmppIncomingClientPrivate* d;
72  friend class QXmppIncomingClientPrivate;
73 };
74 
75 #endif
QXmppStream::handleStanza
virtual void handleStanza(const QDomElement &element)=0
QXmppStream::isConnected
virtual bool isConnected() const
Definition: QXmppStream.cpp:123
QXmppPasswordChecker
The QXmppPasswordChecker class represents an abstract password checker.
Definition: QXmppPasswordChecker.h:101
QXmppStream
The QXmppStream class is the base class for all XMPP streams.
Definition: QXmppStream.h:41
QXmppStream::handleStream
virtual void handleStream(const QDomElement &element)=0
QXmppIncomingClient
Interface for password checkers.
Definition: QXmppIncomingClient.h:39