diff options
author | Matthias Radestock <matthias@lshift.net> | 2009-12-10 22:39:57 +0000 |
---|---|---|
committer | Matthias Radestock <matthias@lshift.net> | 2009-12-10 22:39:57 +0000 |
commit | 2ae9e594af2f0ffc64612986b5279352decfc9ab (patch) | |
tree | be552bf44e9286b1d5b0ee358c2a3c738984a923 /include | |
parent | 1fdc477aa57f4f0ae4b9428f47cc34277d9f0400 (diff) | |
download | rabbitmq-server-2ae9e594af2f0ffc64612986b5279352decfc9ab.tar.gz |
add client_properties info item to 'rabbitmqctl list_connections'bug21948
showing the amqp table transmitted by the client as part of the
connection.start_ok method.
Diffstat (limited to 'include')
-rw-r--r-- | include/rabbit.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 5703d0d6..4b157cbc 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -36,7 +36,7 @@ -record(vhost, {virtual_host, dummy}). --record(connection, {user, timeout_sec, frame_max, vhost}). +-record(connection, {user, timeout_sec, frame_max, vhost, client_properties}). -record(content, {class_id, |