summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2012-07-01 23:50:58 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2012-07-01 23:50:58 +0100
commitaac1fb7c53b0fb0dc48dc6c097a264c0a335e16e (patch)
treed3b64592b4a5418adb1d63fb6d355577a2c6f9c7 /include
parent47927e2097f65b793923b86fb1e2d5f0a5415127 (diff)
parenta9dc9a1de77dbed1fa79fa4a36c8878239f17ac1 (diff)
downloadrabbitmq-server-git-aac1fb7c53b0fb0dc48dc6c097a264c0a335e16e.tar.gz
merge bug24884 into default (no-op)
Diffstat (limited to 'include')
-rw-r--r--include/rabbit.hrl6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index faf3059ac7..e8b4a6232e 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -43,11 +43,11 @@
-record(resource, {virtual_host, kind, name}).
-record(exchange, {name, type, durable, auto_delete, internal, arguments,
- scratch}).
+ scratches, policy}).
-record(exchange_serial, {name, next}).
-record(amqqueue, {name, durable, auto_delete, exclusive_owner = none,
- arguments, pid, slave_pids, mirror_nodes}).
+ arguments, pid, slave_pids, mirror_nodes, policy}).
%% mnesia doesn't like unary records, so we add a dummy 'value' field
-record(route, {binding, value = const}).
@@ -66,6 +66,8 @@
-record(listener, {node, protocol, host, ip_address, port}).
+-record(runtime_parameters, {key, value}).
+
-record(basic_message, {exchange_name, routing_keys = [], content, id,
is_persistent}).