8#include "QXmppLogger.h"
24class QXmppServerPrivate;
44 Q_PROPERTY(
QXmppLogger *logger READ logger WRITE setLogger NOTIFY loggerChanged)
51 QList<QXmppServerExtension *> extensions();
53 QString domain()
const;
54 void setDomain(
const QString &domain);
64 QVariantMap statistics()
const;
66 void addCaCertificates(
const QString &caCertificates);
67 void setLocalCertificate(
const QString &path);
68 void setLocalCertificate(
const QSslCertificate &certificate);
69 void setPrivateKey(
const QString &path);
70 void setPrivateKey(
const QSslKey &key);
73 bool listenForClients(
const QHostAddress &address = QHostAddress::Any, quint16 port = 5222);
74 bool listenForServers(
const QHostAddress &address = QHostAddress::Any, quint16 port = 5269);
76 bool sendElement(
const QDomElement &element);
90 Q_SLOT
void handleElement(
const QDomElement &element);
93 Q_SLOT
void _q_clientConnection(QSslSocket *socket);
94 Q_SLOT
void _q_clientConnected();
95 Q_SLOT
void _q_clientDisconnected();
96 Q_SLOT
void _q_dialbackRequestReceived(
const QXmppDialback &dialback);
97 Q_SLOT
void _q_outgoingServerDisconnected();
98 Q_SLOT
void _q_serverConnection(QSslSocket *socket);
99 Q_SLOT
void _q_serverDisconnected();
101 const std::unique_ptr<QXmppServerPrivate> d;
103 friend class QXmppServerPrivate;
106class QXmppSslServerPrivate;
119 void addCaCertificates(
const QList<QSslCertificate> &certificates);
120 void setLocalCertificate(
const QSslCertificate &certificate);
121 void setPrivateKey(
const QSslKey &key);
127 void incomingConnection(qintptr socketDescriptor)
override;
128 const std::unique_ptr<QXmppSslServerPrivate> d;
The QXmppDialback class represents a stanza used for the Server Dialback protocol as specified by XEP...
Definition QXmppDialback.h:16
The QXmppIncomingClient class represents an incoming XMPP stream from an XMPP client.
Definition QXmppIncomingClient.h:27
The QXmppLoggable class represents a source of logging messages.
Definition QXmppLogger.h:109
The QXmppLogger class represents a sink for logging messages.
Definition QXmppLogger.h:29
The QXmppOutgoingServer class represents an outgoing XMPP stream to another XMPP server.
Definition QXmppOutgoingServer.h:29
The QXmppPasswordChecker class represents an abstract password checker.
Definition QXmppPasswordChecker.h:81
The QXmppPresence class represents an XMPP presence stanza.
Definition QXmppPresence.h:22
The QXmppServerExtension class is the base class for QXmppServer extensions.
Definition QXmppServerExtension.h:29
The QXmppServer class represents an XMPP server.
Definition QXmppServer.h:41
QXmppLogger * logger()
Returns the QXmppLogger associated with the server.
Q_SIGNAL void clientDisconnected(const QString &jid)
This signal is emitted when a client has disconnected.
Q_SIGNAL void loggerChanged(QXmppLogger *logger)
This signal is emitted when the logger changes.
Q_SIGNAL void clientConnected(const QString &jid)
This signal is emitted when a client has connected.
The QXmppSslServer class represents an SSL-enabled TCP server.
Definition QXmppServer.h:112
Q_SIGNAL void newConnection(QSslSocket *socket)
This signal is emitted when a new connection is established.
The QXmppStanza class is the base class for all XMPP stanzas.
Definition QXmppStanza.h:106