summaryrefslogtreecommitdiff
path: root/include/rabbit.hrl
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-12-05 11:36:11 +0000
committerSimon MacMullen <simon@rabbitmq.com>2014-12-05 11:36:11 +0000
commit1977561b78a0b75400e683db860bf412445224af (patch)
tree7c0543204862ea4e0bcc43f3998d10bd1d2bbce8 /include/rabbit.hrl
parentf106429bc42ff46944790acc0a8c917db9ff9405 (diff)
parentd205a4285ca02d12493ac0dd0f5256af4294723c (diff)
downloadrabbitmq-server-1977561b78a0b75400e683db860bf412445224af.tar.gz
stable to default
Diffstat (limited to 'include/rabbit.hrl')
-rw-r--r--include/rabbit.hrl11
1 files changed, 8 insertions, 3 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 74e165cd..9cbd978e 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}).