diff options
author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2012-01-13 18:22:40 +0000 |
---|---|---|
committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2012-01-13 18:22:40 +0000 |
commit | 2e958af105d5cb992fc69c3969b9ccccd330ea40 (patch) | |
tree | 2a66675fe1ada6a345048ce21969edfc3cb0a210 /cpp/src/qpid/broker/ConnectionHandler.cpp | |
parent | 39f068763c649f63f2c42ab19e76d4f76d612ff5 (diff) | |
download | qpid-python-2e958af105d5cb992fc69c3969b9ccccd330ea40.tar.gz |
QPID-3630: remove deprecated rate limiting feature
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1231221 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/ConnectionHandler.cpp')
-rw-r--r-- | cpp/src/qpid/broker/ConnectionHandler.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cpp/src/qpid/broker/ConnectionHandler.cpp b/cpp/src/qpid/broker/ConnectionHandler.cpp index 7cd91ae539..6048a46f79 100644 --- a/cpp/src/qpid/broker/ConnectionHandler.cpp +++ b/cpp/src/qpid/broker/ConnectionHandler.cpp @@ -46,11 +46,9 @@ const std::string PLAIN = "PLAIN"; const std::string en_US = "en_US"; const std::string QPID_FED_LINK = "qpid.fed_link"; const std::string QPID_FED_TAG = "qpid.federation_tag"; -const std::string SESSION_FLOW_CONTROL("qpid.session_flow"); const std::string CLIENT_PROCESS_NAME("qpid.client_process"); const std::string CLIENT_PID("qpid.client_pid"); const std::string CLIENT_PPID("qpid.client_ppid"); -const int SESSION_FLOW_CONTROL_VER = 1; const std::string SPACE(" "); } @@ -173,9 +171,6 @@ void ConnectionHandler::Handler::startOk(const ConnectionStartOkBody& body) } QPID_LOG(info, "Connection is a federation link"); } - if (clientProperties.getAsInt(SESSION_FLOW_CONTROL) == SESSION_FLOW_CONTROL_VER) { - connection.setClientThrottling(); - } if (connection.getMgmtObject() != 0) { string procName = clientProperties.getAsString(CLIENT_PROCESS_NAME); |