summaryrefslogtreecommitdiff
path: root/include/rabbit.hrl
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2011-06-28 07:07:52 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2011-06-28 07:07:52 +0100
commitf1a7fc4cfcf0e566a1cf3f76ca3e73e242d43d6d (patch)
tree5a96bb1a0add471e369fe4fc9f13f38ba047faeb /include/rabbit.hrl
parentecf2ee32580ed5728a4f9845fe0640120e791e17 (diff)
parent3e8acf0f3868f3afcd7a6121866fc0cd0f7a8cde (diff)
downloadrabbitmq-server-git-f1a7fc4cfcf0e566a1cf3f76ca3e73e242d43d6d.tar.gz
merge bug24180 into default
Diffstat (limited to 'include/rabbit.hrl')
-rw-r--r--include/rabbit.hrl6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 67e2dfe5fa..00b7e6e9b7 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -15,12 +15,12 @@
%%
-record(user, {username,
- is_admin,
+ tags,
auth_backend, %% Module this user came from
impl %% Scratch space for that module
}).
--record(internal_user, {username, password_hash, is_admin}).
+-record(internal_user, {username, password_hash, tags}).
-record(permission, {configure, write, read}).
-record(user_vhost, {username, virtual_host}).
-record(user_permission, {user_vhost, permission}).
@@ -46,7 +46,7 @@
-record(exchange_serial, {name, next}).
-record(amqqueue, {name, durable, auto_delete, exclusive_owner = none,
- arguments, pid}).
+ arguments, pid, slave_pids, mirror_nodes}).
%% mnesia doesn't like unary records, so we add a dummy 'value' field
-record(route, {binding, value = const}).