diff options
author | Gordon Sim <gsim@apache.org> | 2008-08-05 17:03:16 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-08-05 17:03:16 +0000 |
commit | bd47fd629bb2356df93af70b174a6a070f3a58cc (patch) | |
tree | c92b2cc932fe806ce9e41521de9f4d01557ec2ba /cpp/src/qpid/client/Connector.cpp | |
parent | 6bed4cf29dda54560af44d16143fa4b24b65245b (diff) | |
download | qpid-python-bd47fd629bb2356df93af70b174a6a070f3a58cc.tar.gz |
* revised approach for setting tcp-nodelay on client to avoid breaking platform abstractions
* added ability to set tcp-nodelay on server side of the socket also
Merged from r682785.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@682791 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Connector.cpp')
-rw-r--r-- | cpp/src/qpid/client/Connector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/Connector.cpp b/cpp/src/qpid/client/Connector.cpp index b6fc42a74a..524155b929 100644 --- a/cpp/src/qpid/client/Connector.cpp +++ b/cpp/src/qpid/client/Connector.cpp @@ -60,7 +60,7 @@ Connector::Connector(ProtocolVersion ver, impl(cimpl) { QPID_LOG(debug, "Connector created for " << version); - socket.configure(settings); + settings.configureSocket(socket); } Connector::~Connector() { |