diff options
| author | Melvin Keskin <melvo@olomono.de> | 2021-05-08 19:35:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-08 19:35:40 +0200 |
| commit | 826ece0480385c47c72f216e35e004b276d82498 (patch) | |
| tree | 0ebddddd5db2c32c567e256be1117c62a4978c49 /src/client/QXmppRosterManager.h | |
| parent | ab2ead62e9f5241cc28801d742698ba65d4c8bd5 (diff) | |
| download | qxmpp-826ece0480385c47c72f216e35e004b276d82498.tar.gz | |
RosterManager: Add subscription request signal with full presence (#346)
This makes it possible to get the statusText of subscription requests.
Diffstat (limited to 'src/client/QXmppRosterManager.h')
| -rw-r--r-- | src/client/QXmppRosterManager.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/QXmppRosterManager.h b/src/client/QXmppRosterManager.h index 2142a5f2..81f0538a 100644 --- a/src/client/QXmppRosterManager.h +++ b/src/client/QXmppRosterManager.h @@ -4,6 +4,7 @@ * Authors: * Manjeet Dahiya * Jeremy Lainé + * Melvin Keskin * * Source: * https://github.com/qxmpp-project/qxmpp @@ -119,6 +120,8 @@ Q_SIGNALS: /// signal will not be emitted. void subscriptionReceived(const QString &bareJid); + void subscriptionRequestReceived(const QString &subscriberBareJid, const QXmppPresence &presence); + /// This signal is emitted when the roster entry of a particular bareJid is /// added as a result of roster push. void itemAdded(const QString &bareJid); |
