summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2010-07-02 13:08:02 +0100
committerSimon MacMullen <simon@rabbitmq.com>2010-07-02 13:08:02 +0100
commita9011fca063dc68662c4984cbc4407f8a98c72bd (patch)
tree3196c28f0313763e437ea38e595f4968d0638109 /include
parentbc482e7ffcc2cea901419f738ac7cb9db4aa6182 (diff)
downloadrabbitmq-server-git-a9011fca063dc68662c4984cbc4407f8a98c72bd.tar.gz
Remove the rabbit_framing shim, pass around a module name and use that.
Diffstat (limited to 'include')
-rw-r--r--include/rabbit.hrl5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 8afa97a637..72fbb01e0e 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -36,8 +36,8 @@
-record(vhost, {virtual_host, dummy}).
--record(connection, {protocol, user, timeout_sec, frame_max, vhost,
- client_properties}).
+-record(connection, {protocol, protocol_name, user, timeout_sec, frame_max,
+ vhost, client_properties}).
-record(content,
{class_id,
@@ -175,6 +175,7 @@
method :: atom()}).
-type(protocol() :: atom()).
+-type(protocol_name() :: atom()).
-endif.
%%----------------------------------------------------------------------------