diff options
| author | Gordon Sim <gsim@apache.org> | 2013-06-25 17:18:38 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-06-25 17:18:38 +0000 |
| commit | 0688c87f491ea6c85bcf59bd1a08b74e38429462 (patch) | |
| tree | ad507870aecbecd789c03abf7a099241edece88d /cpp/src/qpid/broker/ConnectionHandler.cpp | |
| parent | 014921644cd24fd6af966f03f893cd88a795e417 (diff) | |
| download | qpid-python-0688c87f491ea6c85bcf59bd1a08b74e38429462.tar.gz | |
QPID-4712: fixes for windows, rhel5
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1496545 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/ConnectionHandler.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/ConnectionHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/ConnectionHandler.cpp b/cpp/src/qpid/broker/ConnectionHandler.cpp index fd4af963ad..09f774da62 100644 --- a/cpp/src/qpid/broker/ConnectionHandler.cpp +++ b/cpp/src/qpid/broker/ConnectionHandler.cpp @@ -109,10 +109,10 @@ void ConnectionHandler::setSecureConnection(SecureConnection* secured) handler->secured = secured; } -ConnectionHandler::ConnectionHandler(amqp_0_10::Connection& connection, bool isClient) : +ConnectionHandler::ConnectionHandler(qpid::broker::amqp_0_10::Connection& connection, bool isClient) : handler(new Handler(connection, isClient)) {} -ConnectionHandler::Handler::Handler(amqp_0_10::Connection& c, bool isClient) : +ConnectionHandler::Handler::Handler(qpid::broker::amqp_0_10::Connection& c, bool isClient) : proxy(c.getOutput()), connection(c), serverMode(!isClient), secured(0), isOpen(false) |
