summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/HandlerImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/broker/HandlerImpl.h')
-rw-r--r--cpp/src/qpid/broker/HandlerImpl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/HandlerImpl.h b/cpp/src/qpid/broker/HandlerImpl.h
index 008be10867..96bf065062 100644
--- a/cpp/src/qpid/broker/HandlerImpl.h
+++ b/cpp/src/qpid/broker/HandlerImpl.h
@@ -40,12 +40,13 @@ class Connection;
*/
struct CoreRefs
{
- CoreRefs(Channel& ch, Connection& c, Broker& b)
- : channel(ch), connection(c), broker(b), proxy(ch) {}
+ CoreRefs(Channel& ch, Connection& c, Broker& b, framing::ChannelAdapter& a)
+ : channel(ch), connection(c), broker(b), adapter(a), proxy(a) {}
Channel& channel;
Connection& connection;
Broker& broker;
+ framing::ChannelAdapter& adapter;
framing::AMQP_ClientProxy proxy;
/**