From 8f5fb7ef4a9eaa5b6fa3948a1bdbbcf71859b878 Mon Sep 17 00:00:00 2001 From: Vlad Alexandru Ionescu Date: Fri, 28 Jan 2011 16:25:47 +0000 Subject: [PATCH] updating #amqp_params{} documentation --- src/amqp_connection.erl | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/amqp_connection.erl b/src/amqp_connection.erl index e232de6b..9835e969 100644 --- a/src/amqp_connection.erl +++ b/src/amqp_connection.erl @@ -46,17 +46,18 @@ %%
  • virtual_host :: binary() - The name of a virtual host in the broker, %% defaults to <<"/">>
  • %%
  • host :: string() - The hostname of the broker, -%% defaults to "localhost"
  • +%% defaults to "localhost" (network only) %%
  • port :: integer() - The port the broker is listening on, -%% defaults to 5672
  • +%% defaults to 5672 (network only) +%%
  • node :: atom() - The node the broker runs on (direct only)
  • %%
  • channel_max :: non_neg_integer() - The channel_max handshake parameter, %% defaults to 0
  • %%
  • frame_max :: non_neg_integer() - The frame_max handshake parameter, -%% defaults to 0
  • +%% defaults to 0 (network only) %%
  • heartbeat :: non_neg_integer() - The hearbeat interval in seconds, -%% defaults to 0 (turned off)
  • +%% defaults to 0 (turned off) (network only) %%
  • ssl_options :: term() - The second parameter to be used with the -%% ssl:connect/2 function, defaults to 'none'
  • +%% ssl:connect/2 function, defaults to 'none' (network only) %%
  • client_properties :: [{binary(), atom(), binary()}] - A list of extra %% client properties to be sent to the server, defaults to []
  • %%