diff options
| author | Michael Klishin <michael@rabbitmq.com> | 2013-11-29 15:49:48 +0400 |
|---|---|---|
| committer | Michael Klishin <michael@rabbitmq.com> | 2013-11-29 15:49:48 +0400 |
| commit | de9628f18732de3faf3c197b9896fc0096ff663f (patch) | |
| tree | 3fb87673674d16775e968ca4c9fbb7fb07668182 /src | |
| parent | a23fba9e76234d00fd51002d7253f7069736cbec (diff) | |
| download | rabbitmq-server-git-de9628f18732de3faf3c197b9896fc0096ff663f.tar.gz | |
Missing fn head for channel_max
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_reader.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rabbit_reader.erl b/src/rabbit_reader.erl index 713d6f3622..957233f6df 100644 --- a/src/rabbit_reader.erl +++ b/src/rabbit_reader.erl @@ -1063,6 +1063,7 @@ ic(user, #connection{user = U}) -> U#user.username; ic(vhost, #connection{vhost = VHost}) -> VHost; ic(timeout, #connection{timeout_sec = Timeout}) -> Timeout; ic(frame_max, #connection{frame_max = FrameMax}) -> FrameMax; +ic(channel_max, #connection{channel_max = ChannelMax}) -> ChannelMax; ic(client_properties, #connection{client_properties = CP}) -> CP; ic(auth_mechanism, #connection{auth_mechanism = none}) -> none; ic(auth_mechanism, #connection{auth_mechanism = {Name, _Mod}}) -> Name; |
