summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2015-01-09 17:49:05 +0000
committerSimon MacMullen <simon@rabbitmq.com>2015-01-09 17:49:05 +0000
commit29c0ecd4db98c3a7b15742388acd591fddc7f95b (patch)
tree2ec8a0c9a237929e4578806b402e1456e977b293 /include
parented351cf9b6660764e99ad2fd2f076c73269251ae (diff)
parent010367e0ae3ed8e9d79a5958a600d30000cfd849 (diff)
downloadrabbitmq-server-git-29c0ecd4db98c3a7b15742388acd591fddc7f95b.tar.gz
Merge bug26427
Diffstat (limited to 'include')
-rw-r--r--include/rabbit.hrl11
1 files changed, 8 insertions, 3 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 74e165cd9b..9cbd978e42 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -14,12 +14,17 @@
%% Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
%%
+%% Passed around most places
-record(user, {username,
tags,
- auth_backend, %% Module this user came from
- impl %% Scratch space for that module
- }).
+ authz_backends}). %% List of {Module, AuthUserImpl} pairs
+%% Passed to auth backends
+-record(auth_user, {username,
+ tags,
+ impl}).
+
+%% Implementation for the internal auth backend
-record(internal_user, {username, password_hash, tags}).
-record(permission, {configure, write, read}).
-record(user_vhost, {username, virtual_host}).