diff options
author | Gordon Sim <gsim@apache.org> | 2007-01-18 19:22:40 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-01-18 19:22:40 +0000 |
commit | 93bddfd4c9260f958eab861a8a43db55bb836690 (patch) | |
tree | f1c88f0db979fc8aa51f4ca10e1ee4ed4ce3b655 /cpp/lib/broker/BrokerAdapter.cpp | |
parent | 5b6ca65abd333e0ea15790ec351bfb67a7013a5e (diff) | |
download | qpid-python-93bddfd4c9260f958eab861a8a43db55bb836690.tar.gz |
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
Diffstat (limited to 'cpp/lib/broker/BrokerAdapter.cpp')
-rw-r--r-- | cpp/lib/broker/BrokerAdapter.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
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 |