diff options
Diffstat (limited to 'Swiften/Queries/Request.h')
-rw-r--r-- | Swiften/Queries/Request.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Swiften/Queries/Request.h b/Swiften/Queries/Request.h index eee89e9..c710548 100644 --- a/Swiften/Queries/Request.h +++ b/Swiften/Queries/Request.h @@ -54,18 +54,20 @@ namespace Swift { Payload::ref getPayload() const { return payload_; } virtual void handleResponse(Payload::ref, ErrorPayload::ref) = 0; private: bool handleIQ(boost::shared_ptr<IQ>); + bool isCorrectSender(const JID& jid); + bool isAccountJID(const JID& jid); private: IQRouter* router_; IQ::Type type_; JID receiver_; boost::shared_ptr<Payload> payload_; std::string id_; bool sent_; }; |