diff options
| author | Ben Hood <0x6e6562@gmail.com> | 2009-02-02 12:07:36 +0000 |
|---|---|---|
| committer | Ben Hood <0x6e6562@gmail.com> | 2009-02-02 12:07:36 +0000 |
| commit | 998448d1ca360c5f7cf233c6ce77384d89d57bf7 (patch) | |
| tree | cd0d5744e93f3bf02b76b1544d150ae0ba3e3f60 /include | |
| parent | 6fb6d987e0bd3987615a255bd84ead8888bc5b07 (diff) | |
| parent | 3d774ef31a55d3da3068d9f99c5b9d499855f692 (diff) | |
| download | rabbitmq-server-git-998448d1ca360c5f7cf233c6ce77384d89d57bf7.tar.gz | |
Merged 20288 into 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 8aba8a6fb6..c707112f87 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}). @@ -92,8 +92,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(), |
