summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client/ConnectionSettings.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-10-16 18:47:42 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-10-16 18:47:42 +0000
commit2b04bc6dc46b3f761a239f41032258eb1d345fbf (patch)
tree407265a44af0f2a05349a56f31f952ab65267819 /cpp/src/qpid/client/ConnectionSettings.cpp
parent47e5f39e966a99dadf39d9fa30a456296442bbb6 (diff)
downloadqpid-python-2b04bc6dc46b3f761a239f41032258eb1d345fbf.tar.gz
Fixed tcp nodelay, broken by previous socket code shuffling
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@826031 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/ConnectionSettings.cpp')
-rw-r--r--cpp/src/qpid/client/ConnectionSettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/ConnectionSettings.cpp b/cpp/src/qpid/client/ConnectionSettings.cpp
index 35d78365ba..3ae4ee010a 100644
--- a/cpp/src/qpid/client/ConnectionSettings.cpp
+++ b/cpp/src/qpid/client/ConnectionSettings.cpp
@@ -47,7 +47,7 @@ ConnectionSettings::~ConnectionSettings() {}
void ConnectionSettings::configureSocket(qpid::sys::Socket& socket) const
{
if (tcpNoDelay) {
- socket.setTcpNoDelay(tcpNoDelay);
+ socket.setTcpNoDelay();
QPID_LOG(info, "Set TCP_NODELAY");
}
}