summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2011-02-01 21:26:00 +0000
committerAlan Conway <aconway@apache.org>2011-02-01 21:26:00 +0000
commit13d8a9c8bfafc9b87e1cc5810d64c86ea90f8b9b (patch)
tree30762327f33233deea60aa48260e84de332465fd /cpp/src/qpid/broker/windows/SslProtocolFactory.cpp
parent0a671494bb0715dd84bbaadc388a606455be7cf5 (diff)
downloadqpid-python-13d8a9c8bfafc9b87e1cc5810d64c86ea90f8b9b.tar.gz
QPID-3007: Unique management identifier for connections.
Management was using remote socket address (host:port) to identify connections, but this is not a unique identifier. Both the local and remote addresses are needed to uniquely identify a connection - see http://www.faqs.org/rfcs/rfc793.html. This was causing management errors (multiple objects using same identifier) and cluster failures (invalid-arg exception) due to inconsistencies caused by the incorrect management map. This commit uses "localhost:localport-remotehost:remoteport" as a unique identifier. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1066220 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/windows/SslProtocolFactory.cpp')
-rw-r--r--cpp/src/qpid/broker/windows/SslProtocolFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp b/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp
index 2de4a4d914..fd0e537192 100644
--- a/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp
+++ b/cpp/src/qpid/broker/windows/SslProtocolFactory.cpp
@@ -194,7 +194,7 @@ void SslProtocolFactory::established(sys::Poller::shared_ptr poller,
const qpid::sys::Socket& s,
sys::ConnectionCodec::Factory* f,
bool isClient) {
- sys::AsynchIOHandler* async = new sys::AsynchIOHandler(s.getPeerAddress(), f);
+ sys::AsynchIOHandler* async = new sys::AsynchIOHandler(s.getFullAddress(), f);
if (tcpNoDelay) {
s.setTcpNoDelay();