From: Nilgun Belma Buguner
Date: Wed, 22 Oct 2008 08:05:04 +0000 (+0000)
Subject: pre-translation improvements
X-Git-Tag: 2.2.11~121
X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2dcf83ef10ff723dc46a95d78b627071ededb6c6;p=thirdparty%2Fapache%2Fhttpd.git
pre-translation improvements
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@706883 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/programs/ab.xml b/docs/manual/programs/ab.xml
index e42c6664cae..5161cf5df7f 100644
--- a/docs/manual/programs/ab.xml
+++ b/docs/manual/programs/ab.xml
@@ -37,10 +37,12 @@
Synopsis
ab
[ -A auth-username:password ]
+ [ -b windowsize ]
[ -c concurrency ]
[ -C cookie-name=value ]
[ -d ]
[ -e csv-file ]
+ [ -f protocol ]
[ -g gnuplot-file ]
[ -h ]
[ -H custom-header ]
@@ -50,6 +52,7 @@
[ -p POST-file ]
[ -P proxy-auth-username:password ]
[ -q ]
+ [ -r ]
[ -s ]
[ -S ]
[ -t timelimit ]
@@ -61,7 +64,8 @@
[ -X proxy[:port] ]
[ -y <tr>-attributes ]
[ -z <td>-attributes ]
- [http://]hostname[:port]/path
+ [ -Z ciphersuite ]
+ [http[s]://]hostname[:port]/path
Options
@@ -72,6 +76,9 @@
base64 encoded. The string is sent regardless of whether the server needs
it (i.e., has sent an 401 authentication needed).
+ -b windowsize
+ Size of TCP send/receive buffer, in bytes.
+
-c concurrency
Number of multiple requests to perform at a time. Default is one
request at a time.
@@ -91,6 +98,9 @@
that percentage of the requests. This is usually more useful than the
'gnuplot' file; as the results are already 'binned'.
+ -f protocol
+ Specify SSL/TLS protocol (SSL2, SSL3, TLS1, or ALL).
+
-g gnuplot-file
Write all measured values out as a 'gnuplot' or TSV (Tab separate
values) file. This file can easily be imported into packages like Gnuplot,
@@ -118,21 +128,24 @@
non-representative benchmarking results.
-p POST-file
- File containing data to POST.
+ File containing data to POST. Remember to also set -T.
-P proxy-auth-username:password
Supply BASIC Authentication credentials to a proxy en-route. The
- username and password are separated by a single : and sent on
+ username and password are separated by a single : and sent on
the wire base64 encoded. The string is sent regardless of whether the
proxy needs it (i.e., has sent an 407 proxy authentication
needed).
-q
When processing more than 150 requests, ab outputs a
- progress count on stderr every 10% or 100 requests or so. The
+ progress count on stderr every 10% or 100 requests or so. The
-q flag will suppress these messages.
- -s
+ -r
+ Don't exit on socket receive errors.
+
+ -s
When compiled in (ab -h will show you) use the SSL
protected https rather than the http protocol.
This feature is experimental and very rudimentary. You probably
@@ -141,7 +154,7 @@
-S
Do not display the median and standard deviation values, nor display
the warning/error messages when the average and median are more than
- one or two times the standard deviation apart. And default to the
+ one or two times the standard deviation apart. And default to the
min/avg/max values. (legacy support).
-t timelimit
@@ -150,7 +163,9 @@
fixed total amount of time. Per default there is no timelimit.
-T content-type
- Content-type header to use for POST data.
+ Content-type header to use for POST data, eg.
+ application/x-www-form-urlencoded.
+ Default: text/plain.
-v verbosity
Set verbosity level - 4 and above prints information on
@@ -176,6 +191,9 @@
-z <td>-attributes
String to use as attributes for <td>.
+
+ -Z ciphersuite
+ Specify SSL/TLS cipher suite (See openssl ciphers).