diff options
author | Kevin Smith <git@kismith.co.uk> | 2011-09-26 14:27:00 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2011-09-26 14:27:00 (GMT) |
commit | 101053d01cf2274e8eb75c520cce0bfee4d15618 (patch) | |
tree | 5487512084f05005573149bdb9c56cd5eddb6eae /Swiften/Client/ClientSession.h | |
parent | 6c45edc9b3235ae52826c51971dff65afe10fbf6 (diff) | |
download | swift-contrib-101053d01cf2274e8eb75c520cce0bfee4d15618.zip swift-contrib-101053d01cf2274e8eb75c520cce0bfee4d15618.tar.bz2 |
Allow disabling of 198-acks in Swiften
Diffstat (limited to 'Swiften/Client/ClientSession.h')
-rw-r--r-- | Swiften/Client/ClientSession.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Swiften/Client/ClientSession.h b/Swiften/Client/ClientSession.h index e58e758..939e96e 100644 --- a/Swiften/Client/ClientSession.h +++ b/Swiften/Client/ClientSession.h @@ -85,6 +85,10 @@ namespace Swift { useTLS = b; } + void setUseAcks(bool b) { + useAcks = b; + } + bool getStreamManagementEnabled() const { return stanzaAckRequester_; @@ -159,6 +163,7 @@ namespace Swift { bool needResourceBind; bool needAcking; bool rosterVersioningSupported; + bool useAcks; ClientAuthenticator* authenticator; boost::shared_ptr<StanzaAckRequester> stanzaAckRequester_; boost::shared_ptr<StanzaAckResponder> stanzaAckResponder_; |