diff options
author | Ben Hood <0x6e6562@gmail.com> | 2008-08-05 01:15:19 +0100 |
---|---|---|
committer | Ben Hood <0x6e6562@gmail.com> | 2008-08-05 01:15:19 +0100 |
commit | 38b5c8861732f5ddebb48c6176b3af7e450ab536 (patch) | |
tree | 3e142d3ddf2dbc8583c50b2752c52bdcd95b73d4 /include | |
parent | 8aebddb4cc0682719d4ebb177453483c476a7263 (diff) | |
download | rabbitmq-server-38b5c8861732f5ddebb48c6176b3af7e450ab536.tar.gz |
Added vhost to binding spec
Diffstat (limited to 'include')
-rw-r--r-- | include/rabbit.hrl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index c40c4f27..44268940 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -45,12 +45,12 @@ %% This constant field seems to be required because the underlying storage is %% ets, which stores key value pairs -%% The spec field is made up of an {Exchange, Binding, Queue} --record(forwards_binding, {spec, value = const}). -%% The spec field is made up of an {Queue, Binding, Exchange} --record(reverse_binding, {spec, value = const}). +%% The binding field is made up of an {Exchange, Binding, Queue} +-record(forwards_binding, {binding, value = const}). +%% The binding field is made up of an {Queue, Binding, Exchange} +-record(reverse_binding, {binding, value = const}). --record(binding, {exchange, key, queue}). +-record(binding, {virtual_host, exchange_name, key, queue_name}). -record(listener, {node, protocol, host, port}). |