Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A70C79C2E for ; Thu, 12 Apr 2012 13:06:23 +0000 (UTC) Received: (qmail 99718 invoked by uid 500); 12 Apr 2012 13:06:23 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 99699 invoked by uid 500); 12 Apr 2012 13:06:23 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 99692 invoked by uid 99); 12 Apr 2012 13:06:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Apr 2012 13:06:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Apr 2012 13:06:22 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 259352388860 for ; Thu, 12 Apr 2012 13:06:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1325239 - /activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md Date: Thu, 12 Apr 2012 13:06:02 -0000 To: commits@activemq.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120412130602.259352388860@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chirino Date: Thu Apr 12 13:06:01 2012 New Revision: 1325239 URL: http://svn.apache.org/viewvc?rev=1325239&view=rev Log: Better documents how to configure socket options. Fixes APLO-190 : Add support for socket level tuning Modified: activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md Modified: activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md?rev=1325239&r1=1325238&r2=1325239&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md (original) +++ activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md Thu Apr 12 13:06:01 2012 @@ -184,18 +184,20 @@ and port to determine to which local int The TCP URI also supports several query parameters to fine tune the settings used on the socket. The supported parameters are: +* `backlog` : Sets the listen backlog size. Defaults to 100. + * `receive_buffer_size` : Sets the size of the internal socket receive - buffer. Defaults to 65536 (64k) + buffer (aka setting the socket's SO_RCVBUF). Defaults to 65536 (64k) -* `send_buffer_size` : Sets the size of the internal socket send buffer. - Defaults to 65536 (64k) +* `send_buffer_size` : Sets the size of the internal socket send buffer + (aka setting the socket's SO_SNDBUF). Defaults to 65536 (64k) -* `keep_alive` : Enable or disable the SO_KEEPALIVE socket option. - Defaults to true. +* `keep_alive` : Enable or disable the SO_KEEPALIVE socket option + (aka setting the socket's SO_KEEPALIVE). Defaults to true. * `traffic_class` : Sets traffic class or type-of-service octet in the IP - header for packets sent from the transport. Defaults to `8` which - means the traffic should be optimized for throughput. + header for packets sent from the transport (aka setting the socket's IP_TOS). + Defaults to `8` which means the traffic should be optimized for throughput. * `max_read_rate` : Sets the maximum bytes per second that this transport will receive data at. This setting throttles reads so that the rate is not exceeded.