From 93bddfd4c9260f958eab861a8a43db55bb836690 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Thu, 18 Jan 2007 19:22:40 +0000 Subject: Initial implementation of AMQP content data type. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@497542 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/lib/broker/BrokerAdapter.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpp/lib/broker/BrokerAdapter.cpp') diff --git a/cpp/lib/broker/BrokerAdapter.cpp b/cpp/lib/broker/BrokerAdapter.cpp index 58062d4471..41a66b6727 100644 --- a/cpp/lib/broker/BrokerAdapter.cpp +++ b/cpp/lib/broker/BrokerAdapter.cpp @@ -491,13 +491,14 @@ BrokerAdapter::ServerOps::ChannelHandlerImpl::ok( const MethodContext& ) void BrokerAdapter::ServerOps::ChannelHandlerImpl::ping( const MethodContext& ) { - assert(0); // FIXME aconway 2007-01-04: 0-9 feature + connection.client->getChannel().ok(channel.getId()); + connection.client->getChannel().pong(channel.getId()); } void BrokerAdapter::ServerOps::ChannelHandlerImpl::pong( const MethodContext& ) { - assert(0); // FIXME aconway 2007-01-04: 0-9 feature + connection.client->getChannel().ok(channel.getId()); } void -- cgit v1.2.1