diff options
| author | Essien Ita Essien <essiene@gmail.com> | 2009-02-19 08:46:15 +0100 |
|---|---|---|
| committer | Essien Ita Essien <essiene@gmail.com> | 2009-02-19 08:46:15 +0100 |
| commit | 9b35a0aed208f16f9cfa1fb63c6e5c2b75f02a08 (patch) | |
| tree | 688f577439c883a99eab30bb33ed543fd8e8ce0a /include | |
| parent | a7c825b0dd8ef6828cca881dd6cfc6bfc2c6ecda (diff) | |
| parent | 3f5c0fce99c119abbe27ca1dd05e4bf57f27db3e (diff) | |
| download | rabbitmq-server-git-9b35a0aed208f16f9cfa1fb63c6e5c2b75f02a08.tar.gz | |
Merge with upstream default
Diffstat (limited to 'include')
| -rw-r--r-- | include/rabbit.hrl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index c42df1eab3..4608bf97a6 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -30,7 +30,7 @@ %% -record(user, {username, password}). --record(permission, {configuration, messaging}). +-record(permission, {configure, write, read}). -record(user_vhost, {username, virtual_host}). -record(user_permission, {user_vhost, permission}). @@ -95,8 +95,9 @@ #user{username :: username(), password :: password()}). -type(permission() :: - #permission{configuration :: regexp(), - messaging :: regexp()}). + #permission{configure :: regexp(), + write :: regexp(), + read :: regexp()}). -type(amqqueue() :: #amqqueue{name :: queue_name(), durable :: bool(), |
