diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2011-02-24 14:43:44 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2011-02-24 14:43:44 +0000 |
| commit | 79740987af7ce6a60d661513a9dddbab889dcdfc (patch) | |
| tree | 794cc655a4ca4f4146b80fdd8c379c25aec6bd1b /include/rabbit.hrl | |
| parent | 52184593765535908accd6a027fdb7d36509d030 (diff) | |
| parent | 64fc40f4a222d04a974bd10ab1fa0b46ceb2f967 (diff) | |
| download | rabbitmq-server-git-79740987af7ce6a60d661513a9dddbab889dcdfc.tar.gz | |
Merge bug 23858 (Implement try-restart and condrestart correctly in our init scripts)
Diffstat (limited to 'include/rabbit.hrl')
| -rw-r--r-- | include/rabbit.hrl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 15f5d7c5b0..b9a01735b3 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -28,7 +28,7 @@ -record(vhost, {virtual_host, dummy}). -record(connection, {protocol, user, timeout_sec, frame_max, vhost, - client_properties}). + client_properties, capabilities}). -record(content, {class_id, @@ -54,6 +54,12 @@ -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, |
