diff options
Diffstat (limited to 'cpp/src/qpid/broker/ConnectionState.h')
-rw-r--r-- | cpp/src/qpid/broker/ConnectionState.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cpp/src/qpid/broker/ConnectionState.h b/cpp/src/qpid/broker/ConnectionState.h index 13205e3a3d..4dfd86fd8e 100644 --- a/cpp/src/qpid/broker/ConnectionState.h +++ b/cpp/src/qpid/broker/ConnectionState.h @@ -48,7 +48,6 @@ class ConnectionState : public ConnectionToken, public management::Manageable heartbeatmax(120), userProxyAuth(false), // Can proxy msgs with non-matching auth ids when true (used by federation links & clustering) federationLink(true), - clientSupportsThrottling(false), clusterOrderOut(0), isDefaultRealm(false) {} @@ -92,9 +91,6 @@ class ConnectionState : public ConnectionToken, public management::Manageable return (id == userId || (isDefaultRealm && id == userName)); } - void setClientThrottling(bool set=true) { clientSupportsThrottling = set; } - bool getClientThrottling() const { return clientSupportsThrottling; } - Broker& getBroker() { return broker; } Broker& broker; @@ -128,7 +124,6 @@ class ConnectionState : public ConnectionToken, public management::Manageable bool federationLink; std::string federationPeerTag; std::vector<Url> knownHosts; - bool clientSupportsThrottling; framing::FrameHandler* clusterOrderOut; std::string userName; bool isDefaultRealm; |