summaryrefslogtreecommitdiff
path: root/ebin
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2011-02-02 17:30:41 +0000
committerMatthew Sackman <matthew@rabbitmq.com>2011-02-02 17:30:41 +0000
commitb334a2b41a447503fc690b98f67e1c88050f8a6c (patch)
treeaf97815ad075b59f05e5b4f437ed27cddcfed0d6 /ebin
parent690dc6defcabe23efde8347b8fa8eb59097a1582 (diff)
downloadrabbitmq-server-b334a2b41a447503fc690b98f67e1c88050f8a6c.tar.gz
Make tcp listen options configurablebug23792
Diffstat (limited to 'ebin')
-rw-r--r--ebin/rabbit_app.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in
index cc7221d6..f837684c 100644
--- a/ebin/rabbit_app.in
+++ b/ebin/rabbit_app.in
@@ -34,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}]}
+ ]}]}.