summaryrefslogtreecommitdiff
path: root/include/rabbit.hrl
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2011-03-07 14:00:08 +0000
committerMatthew Sackman <matthew@rabbitmq.com>2011-03-07 14:00:08 +0000
commite90ea3baaac8070b0efd1e470a03174aad9f010e (patch)
tree0c65ebae31f851551dfef6d9fd5d6aa1854fffc2 /include/rabbit.hrl
parent0c54e71511a3d31d6626f6e1617f8598ea67c8f9 (diff)
parent807081deffb9b03cab8723ba0aa354dedbc27e8f (diff)
downloadrabbitmq-server-git-e90ea3baaac8070b0efd1e470a03174aad9f010e.tar.gz
Merging new head of bug23810 to default, which results in a tiny and insignificant change
Diffstat (limited to 'include/rabbit.hrl')
-rw-r--r--include/rabbit.hrl11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 24d0f96149..4d75b5465f 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -54,9 +54,15 @@
-record(binding, {source, key, destination, args = []}).
-record(reverse_binding, {destination, key, source, args = []}).
+-record(topic_trie_edge, {trie_edge, node_id}).
+-record(topic_trie_binding, {trie_binding, value = const}).
+
+-record(trie_edge, {exchange_name, node_id, word}).
+-record(trie_binding, {exchange_name, node_id, destination}).
+
-record(listener, {node, protocol, host, ip_address, port}).
--record(basic_message, {exchange_name, routing_key, content, guid,
+-record(basic_message, {exchange_name, routing_keys = [], content, guid,
is_persistent}).
-record(ssl_socket, {tcp, ssl}).
@@ -81,6 +87,9 @@
-define(DESIRED_HIBERNATE, 10000).
-define(STATS_INTERVAL, 5000).
+-define(ROUTING_HEADERS, [<<"CC">>, <<"BCC">>]).
+-define(DELETED_HEADER, <<"BCC">>).
+
-ifdef(debug).
-define(LOGDEBUG0(F), rabbit_log:debug(F)).
-define(LOGDEBUG(F,A), rabbit_log:debug(F,A)).