diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2011-01-12 14:56:54 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2011-01-12 14:56:54 +0000 |
| commit | 185d200a0166ff1a3e46264204cf149ec9d142f0 (patch) | |
| tree | e18b564b983c34c9326a6d03d4ecda12ef4511f2 /include/rabbit.hrl | |
| parent | bfbe15a99662c564daed872b32f2e7a11c8751dd (diff) | |
| parent | e4d6472ad902f76458309039445d060f30284bae (diff) | |
| download | rabbitmq-server-git-185d200a0166ff1a3e46264204cf149ec9d142f0.tar.gz | |
merge default into bug23643
Diffstat (limited to 'include/rabbit.hrl')
| -rw-r--r-- | include/rabbit.hrl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 8c8e12a15e..81c3996bcb 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -29,7 +29,13 @@ %% Contributor(s): ______________________________________. %% --record(user, {username, password_hash, is_admin}). +-record(user, {username, + is_admin, + auth_backend, %% Module this user came from + impl %% Scratch space for that module + }). + +-record(internal_user, {username, password_hash, is_admin}). -record(permission, {configure, write, read}). -record(user_vhost, {username, virtual_host}). -record(user_permission, {user_vhost, permission}). |
