summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBen Hood <0x6e6562@gmail.com>2008-08-05 01:15:19 +0100
committerBen Hood <0x6e6562@gmail.com>2008-08-05 01:15:19 +0100
commit8834453890e058115bdd53671029e34ffc0b0a08 (patch)
tree3e142d3ddf2dbc8583c50b2752c52bdcd95b73d4 /include
parentdcfe7ed8ca7abcfa980b73a78e2f31d263d4e6de (diff)
downloadrabbitmq-server-git-8834453890e058115bdd53671029e34ffc0b0a08.tar.gz
Added vhost to binding spec
Diffstat (limited to 'include')
-rw-r--r--include/rabbit.hrl10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index c40c4f2722..44268940e8 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}).