summaryrefslogtreecommitdiff
path: root/include/rabbit.hrl
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-02-26 16:40:43 +0000
committerSimon MacMullen <simon@rabbitmq.com>2014-02-26 16:40:43 +0000
commitf568aafc19c3e7fc5e7226c25e7a91df7eeef33d (patch)
tree785c8ddf2a2a56fb028c790ec845d5b4fac831c4 /include/rabbit.hrl
parentb1b04a6bc2c9848810db538c26665206506a9e8c (diff)
parent403bbedce9f9c32663cd8ff45de3df9055d8998e (diff)
downloadrabbitmq-server-git-f568aafc19c3e7fc5e7226c25e7a91df7eeef33d.tar.gz
stable to default
Diffstat (limited to 'include/rabbit.hrl')
-rw-r--r--include/rabbit.hrl8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 0f1b7a506b..19eef65add 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -60,7 +60,7 @@
-record(trie_node, {exchange_name, node_id}).
-record(trie_edge, {exchange_name, node_id, word}).
--record(trie_binding, {exchange_name, node_id, destination}).
+-record(trie_binding, {exchange_name, node_id, destination, arguments}).
-record(listener, {node, protocol, host, ip_address, port}).
@@ -70,10 +70,10 @@
is_persistent}).
-record(ssl_socket, {tcp, ssl}).
--record(delivery, {mandatory, sender, message, msg_seq_no}).
+-record(delivery, {mandatory, confirm, sender, message, msg_seq_no}).
-record(amqp_error, {name, explanation = "", method = none}).
--record(event, {type, props, timestamp}).
+-record(event, {type, props, reference = undefined, timestamp}).
-record(message_properties, {expiry, needs_confirming = false}).
@@ -118,3 +118,5 @@
%% to allow plenty of leeway for the #basic_message{} and #content{}
%% wrapping the message body).
-define(MAX_MSG_SIZE, 2147383648).
+
+-define(store_proc_name(N), rabbit_misc:store_proc_name(?MODULE, N)).