diff options
author | Ben Hood <0x6e6562@gmail.com> | 2008-08-05 17:19:05 +0100 |
---|---|---|
committer | Ben Hood <0x6e6562@gmail.com> | 2008-08-05 17:19:05 +0100 |
commit | fea633b993702f4c74f9289194707dfb5ef3ebe1 (patch) | |
tree | ea3de7c877516cc58c68e528f7a2143fd6d64a4a /include/rabbit.hrl | |
parent | c2659a9444f11ba65ab33e32dad9550c243939d2 (diff) | |
download | rabbitmq-server-fea633b993702f4c74f9289194707dfb5ef3ebe1.tar.gz |
Deleted spec reference to permission type
Diffstat (limited to 'include/rabbit.hrl')
-rw-r--r-- | include/rabbit.hrl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index f153e7c4..a83c0971 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -31,11 +31,11 @@ -record(connection, {user, timeout_sec, frame_max, vhost}). -record(content, {class_id, - properties, %% either 'none', or a decoded record/tuple - properties_bin, %% either 'none', or an encoded properties binary - %% Note: at most one of properties and properties_bin can be 'none' at once. - payload_fragments_rev %% list of binaries, in reverse order (!) - }). + properties, %% either 'none', or a decoded record/tuple + properties_bin, %% either 'none', or an encoded properties binary + %% Note: at most one of properties and properties_bin can be 'none' at once. + payload_fragments_rev %% list of binaries, in reverse order (!) + }). -record(resource, {virtual_host, kind, name}). @@ -75,7 +75,6 @@ -type(user() :: #user{username :: username(), password :: password()}). --type(permission() :: 'passive' | 'active' | 'write' | 'read'). -type(binding_spec() :: #binding_spec{exchange_name :: exchange_name(), routing_key :: routing_key(), |