diff options
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 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}). |
