summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-11-14 14:16:39 +0000
committerSimon MacMullen <simon@rabbitmq.com>2014-11-14 14:16:39 +0000
commitfeb6d85ccb7d18e9762680e69a3b94c0439ebc9e (patch)
treeadfd795b14087b1dc2ee7ecb1e42b73f40400f94 /include
parent17dc4acde6bd15f3943cf69729964190a157e279 (diff)
downloadrabbitmq-server-git-feb6d85ccb7d18e9762680e69a3b94c0439ebc9e.tar.gz
Tweak the APIs again, so that authz plugins aren't expected to create a #auth_user record in the first place, just whatever impl they want. Which necessitates seperate login functions for authz and authn, and if we're going to do that we might as well split the behaviours so that we have the possibility of making an authz-only plugin.
Diffstat (limited to 'include')
-rw-r--r--include/rabbit.hrl2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 86c30fc581..9cbd978e42 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -17,7 +17,7 @@
%% Passed around most places
-record(user, {username,
tags,
- authz_backends}). %% List of {Module, AuthUser} pairs
+ authz_backends}). %% List of {Module, AuthUserImpl} pairs
%% Passed to auth backends
-record(auth_user, {username,