summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlexandru Scvortov <scvalex@gmail.com>2010-06-03 14:47:25 +0100
committerAlexandru Scvortov <scvalex@gmail.com>2010-06-03 14:47:25 +0100
commit6f22a1a8aa9051bba1d9bf24250a466310f2bb53 (patch)
tree1af7c4601a549f5bb15342d9c358b627f6bc1bd1 /include
parent24d60ac49c1bdadf96f3f38b48078356aefead63 (diff)
downloadrabbitmq-server-git-6f22a1a8aa9051bba1d9bf24250a466310f2bb53.tar.gz
rabbit_framing_spec.hrl is now generated
Diffstat (limited to 'include')
-rw-r--r--include/rabbit_framing_spec.hrl62
1 files changed, 0 insertions, 62 deletions
diff --git a/include/rabbit_framing_spec.hrl b/include/rabbit_framing_spec.hrl
deleted file mode 100644
index 5344695e92..0000000000
--- a/include/rabbit_framing_spec.hrl
+++ /dev/null
@@ -1,62 +0,0 @@
-%% The contents of this file are subject to the Mozilla Public License
-%% Version 1.1 (the "License"); you may not use this file except in
-%% compliance with the License. You may obtain a copy of the License at
-%% http://www.mozilla.org/MPL/
-%%
-%% Software distributed under the License is distributed on an "AS IS"
-%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
-%% License for the specific language governing rights and limitations
-%% under the License.
-%%
-%% The Original Code is RabbitMQ.
-%%
-%% The Initial Developers of the Original Code are LShift Ltd,
-%% Cohesive Financial Technologies LLC, and Rabbit Technologies Ltd.
-%%
-%% Portions created before 22-Nov-2008 00:00:00 GMT by LShift Ltd,
-%% Cohesive Financial Technologies LLC, or Rabbit Technologies Ltd
-%% are Copyright (C) 2007-2008 LShift Ltd, Cohesive Financial
-%% Technologies LLC, and Rabbit Technologies Ltd.
-%%
-%% Portions created by LShift Ltd are Copyright (C) 2007-2010 LShift
-%% Ltd. Portions created by Cohesive Financial Technologies LLC are
-%% Copyright (C) 2007-2010 Cohesive Financial Technologies
-%% LLC. Portions created by Rabbit Technologies Ltd are Copyright
-%% (C) 2007-2010 Rabbit Technologies Ltd.
-%%
-%% All Rights Reserved.
-%%
-%% Contributor(s): ______________________________________.
-%%
-
-%% TODO: much of this should be generated
-
--type(amqp_field_type() ::
- 'longstr' | 'signedint' | 'decimal' | 'timestamp' |
- 'table' | 'byte' | 'double' | 'float' | 'long' |
- 'short' | 'bool' | 'binary' | 'void').
--type(amqp_property_type() ::
- 'shortstr' | 'longstr' | 'octet' | 'shortint' | 'longint' |
- 'longlongint' | 'timestamp' | 'bit' | 'table').
-%% we could make this more precise but ultimately are limited by
-%% dialyzer's lack of support for recursive types
--type(amqp_table() :: [{binary(), amqp_field_type(), any()}]).
-%% TODO Remove this
--type(amqp_class_id() ::
- ( 100 | 70 | 40 | 10
- | 110 | 80 | 50 | 20
- | 120 | 90 | 60 | 30 )).
-%% TODO: make this more precise
-%% TODO: Are these tuples of the form {P_basic_property, any()} ?
--type(amqp_properties() :: tuple()).
-%% TODO: make this more precise I can't find any restriction on this.
-%% Should I just check if it's 16bit ?
--type(channel_number() :: non_neg_integer()).
--type(resource_name() :: binary()).
--type(routing_key() :: binary()).
--type(username() :: binary()).
--type(password() :: binary()).
--type(vhost() :: binary()).
--type(ctag() :: binary()).
--type(exchange_type() :: atom()).
--type(binding_key() :: binary()).