diff options
Diffstat (limited to 'Swiften/Presence/SubscriptionManager.h')
-rw-r--r-- | Swiften/Presence/SubscriptionManager.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Swiften/Presence/SubscriptionManager.h b/Swiften/Presence/SubscriptionManager.h index 477a2fd..fdf3c04 100644 --- a/Swiften/Presence/SubscriptionManager.h +++ b/Swiften/Presence/SubscriptionManager.h @@ -26,9 +26,14 @@ namespace Swift { void requestSubscription(const JID& jid); /** - * This signal is emitted when a presence subscription request is received. + * This signal is emitted when a presence subscription request is + * received. + * + * The third parameter of this signal is the original presence stanza + * received. This is useful when the subscriber adds extensions to + * the request. */ - boost::signal<void (const JID&, const String&)> onPresenceSubscriptionRequest; + boost::signal<void (const JID&, const String&, Presence::ref)> onPresenceSubscriptionRequest; boost::signal<void (const JID&, const String&)> onPresenceSubscriptionRevoked; |