From 9cb1922884c5b258c961046e6fd48e5152aa79d5 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Wed, 14 Feb 2007 16:58:52 +0000 Subject: Added durability property to queues and pass this to broker on declare. (This change also applied on trunk) Minor update of accumulated ack and test. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@507622 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/lib/client/ClientChannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/lib/client/ClientChannel.cpp') diff --git a/cpp/lib/client/ClientChannel.cpp b/cpp/lib/client/ClientChannel.cpp index 613469c4ba..9d1c8ec011 100644 --- a/cpp/lib/client/ClientChannel.cpp +++ b/cpp/lib/client/ClientChannel.cpp @@ -159,7 +159,7 @@ void Channel::declareQueue(Queue& queue, bool synch){ sendAndReceiveSync( synch, new QueueDeclareBody( - version, 0, name, false, false, + version, 0, name, false/*passive*/, queue.isDurable(), queue.isExclusive(), queue.isAutoDelete(), !synch, args)); if (synch) { if(queue.getName().length() == 0){ -- cgit v1.2.1