summaryrefslogtreecommitdiff
path: root/librabbitmq/amqp_api.c
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2010-07-09 15:21:05 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2010-07-09 15:21:05 +0100
commit731c5101b94d9ba35dbe6e4968e572656da3fdba (patch)
tree5336204bbaab8611bbc9e48120e680b1c15945bc /librabbitmq/amqp_api.c
parent7478207a21fc2e1e7aea5306762578f2992ccb42 (diff)
parent7478207a21fc2e1e7aea5306762578f2992ccb42 (diff)
downloadrabbitmq-c-731c5101b94d9ba35dbe6e4968e572656da3fdba.tar.gz
this branch is default with amqp_0_9_1 merged in; everything seems to work fine
Diffstat (limited to 'librabbitmq/amqp_api.c')
-rw-r--r--librabbitmq/amqp_api.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/librabbitmq/amqp_api.c b/librabbitmq/amqp_api.c
index a748f90..592ab58 100644
--- a/librabbitmq/amqp_api.c
+++ b/librabbitmq/amqp_api.c
@@ -236,12 +236,13 @@ amqp_basic_consume_ok_t *amqp_basic_consume(amqp_connection_state_t state,
amqp_bytes_t consumer_tag,
amqp_boolean_t no_local,
amqp_boolean_t no_ack,
- amqp_boolean_t exclusive)
+ amqp_boolean_t exclusive,
+ amqp_table_t filter)
{
state->most_recent_api_result =
AMQP_SIMPLE_RPC(state, channel, BASIC, CONSUME, CONSUME_OK,
amqp_basic_consume_t,
- 0, queue, consumer_tag, no_local, no_ack, exclusive, 0);
+ 0, queue, consumer_tag, no_local, no_ack, exclusive, 0, filter);
return RPC_REPLY(amqp_basic_consume_ok_t);
}