diff options
author | Andrew Stitcher <astitcher@apache.org> | 2009-10-16 18:47:42 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2009-10-16 18:47:42 +0000 |
commit | 2b04bc6dc46b3f761a239f41032258eb1d345fbf (patch) | |
tree | 407265a44af0f2a05349a56f31f952ab65267819 /cpp/src/qpid/sys/TCPIOPlugin.cpp | |
parent | 47e5f39e966a99dadf39d9fa30a456296442bbb6 (diff) | |
download | qpid-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/sys/TCPIOPlugin.cpp')
-rw-r--r-- | cpp/src/qpid/sys/TCPIOPlugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/TCPIOPlugin.cpp b/cpp/src/qpid/sys/TCPIOPlugin.cpp index 3377be98f1..d51893374a 100644 --- a/cpp/src/qpid/sys/TCPIOPlugin.cpp +++ b/cpp/src/qpid/sys/TCPIOPlugin.cpp @@ -84,7 +84,7 @@ void AsynchIOProtocolFactory::established(Poller::shared_ptr poller, const Socke AsynchIOHandler* async = new AsynchIOHandler(s.getPeerAddress(), f); if (tcpNoDelay) { - s.setTcpNoDelay(tcpNoDelay); + s.setTcpNoDelay(); QPID_LOG(info, "Set TCP_NODELAY on connection to " << s.getPeerAddress()); } |