diff options
| author | Matthew Sackman <matthew@rabbitmq.com> | 2011-02-23 12:56:20 +0000 |
|---|---|---|
| committer | Matthew Sackman <matthew@rabbitmq.com> | 2011-02-23 12:56:20 +0000 |
| commit | 5f192815cb9ded7e21ef8423d1fec06a543889c4 (patch) | |
| tree | 88e2b48579881ab80f7fb867dadbc1b1f959cb68 /ebin | |
| parent | 3da1b86545a8b99e640f55ece3d2c867ddd02b63 (diff) | |
| parent | 0ff96ad279aef667967a84544620dcf176a09bbd (diff) | |
| download | rabbitmq-server-git-5f192815cb9ded7e21ef8423d1fec06a543889c4.tar.gz | |
Merging default into bug23727
Diffstat (limited to 'ebin')
| -rw-r--r-- | ebin/rabbit_app.in | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in index 5ed872b685..f837684c60 100644 --- a/ebin/rabbit_app.in +++ b/ebin/rabbit_app.in @@ -8,12 +8,13 @@ rabbit_node_monitor, rabbit_router, rabbit_sup, - rabbit_tcp_client_sup]}, + rabbit_tcp_client_sup, + rabbit_direct_client_sup]}, {applications, [kernel, stdlib, sasl, mnesia, os_mon]}, %% we also depend on crypto, public_key and ssl but they shouldn't be %% in here as we don't actually want to start it {mod, {rabbit, []}}, - {env, [{tcp_listeners, [{"0.0.0.0", 5672}]}, + {env, [{tcp_listeners, [5672]}, {ssl_listeners, []}, {ssl_options, []}, {vm_memory_high_watermark, 0.4}, @@ -33,4 +34,11 @@ {collect_statistics, none}, {auth_mechanisms, ['PLAIN', 'AMQPLAIN']}, {auth_backends, [rabbit_auth_backend_internal]}, - {delegate_count, 16}]}]}. + {delegate_count, 16}, + {tcp_listen_options, [binary, + {packet, raw}, + {reuseaddr, true}, + {backlog, 128}, + {nodelay, true}, + {exit_on_close, false}]} + ]}]}. |
