diff options
author | Gordon Sim <gsim@apache.org> | 2007-08-13 09:41:45 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-08-13 09:41:45 +0000 |
commit | f458ec7b59e6c03f59e8b33474bbe70f9a9873dc (patch) | |
tree | 5b750882fbaf54fe42ded428c76967f70ed55b3f /cpp/lib/client/Connection.cpp | |
parent | 2553b54071b2ab89faaf503e3c3c8449fed07070 (diff) | |
download | qpid-python-f458ec7b59e6c03f59e8b33474bbe70f9a9873dc.tar.gz |
Fixes for QPID-544 and QPID-548
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@565284 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/client/Connection.cpp')
-rw-r--r-- | cpp/lib/client/Connection.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/cpp/lib/client/Connection.cpp b/cpp/lib/client/Connection.cpp index f7897aa4df..c00b58a4a9 100644 --- a/cpp/lib/client/Connection.cpp +++ b/cpp/lib/client/Connection.cpp @@ -35,7 +35,8 @@ Connection::Connection( bool _debug, u_int32_t _max_frame_size, qpid::framing:: channelIdCounter(0), max_frame_size(_max_frame_size), closed(true), - version(_version->getMajor(),_version->getMinor()) + version(_version->getMajor(),_version->getMinor()), + tcpNoDelay(false) { connector = new Connector(version, debug, _max_frame_size); } @@ -44,6 +45,10 @@ Connection::~Connection(){ delete connector; } +void Connection::setTcpNoDelay(bool on) { + tcpNoDelay = on; +} + void Connection::open(const std::string& _host, int _port, const std::string& uid, const std::string& pwd, const std::string& virtualhost){ host = _host; port = _port; @@ -51,7 +56,7 @@ void Connection::open(const std::string& _host, int _port, const std::string& ui connector->setTimeoutHandler(this); connector->setShutdownHandler(this); out = connector->getOutputHandler(); - connector->connect(host, port); + connector->connect(host, port, tcpNoDelay); ProtocolInitiation* header = new ProtocolInitiation(version); responses.expect(); |