summaryrefslogtreecommitdiff
path: root/librabbitmq/amqp_api.c
diff options
context:
space:
mode:
authorTony Garnock-Jones <tonygarnockjones@gmail.com>2010-02-25 15:13:38 +1300
committerTony Garnock-Jones <tonygarnockjones@gmail.com>2010-02-25 15:13:38 +1300
commit57beee4aadd2ba453cf39cd84a417c6f6cec1243 (patch)
treed10a137f54b5100db501b5936f8009fba012bffa /librabbitmq/amqp_api.c
parent83b5975e97bdf9ab2f8dc78f9dafe02ed18b183a (diff)
parent5606e1d9167d23e7f7768320ec57c56613fe4111 (diff)
downloadrabbitmq-c-github-ask-57beee4aadd2ba453cf39cd84a417c6f6cec1243.tar.gz
Merge default into amqp_0_9_1librabbitmq-0.1-amqp_0_9_1
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 66b1f3d..5eedf7b 100644
--- a/librabbitmq/amqp_api.c
+++ b/librabbitmq/amqp_api.c
@@ -223,12 +223,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);
}