From: Joe Orton Date: Wed, 2 Feb 2005 11:28:57 +0000 (+0000) Subject: Merge r126297 from trunk: X-Git-Tag: 2.0.53~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5be9c4f09a489803e0a701a03a9225502c4a2c14;p=thirdparty%2Fapache%2Fhttpd.git Merge r126297 from trunk: Clarify meaning of %[bB] and note difference from 1.3. Reviewed by: nd, slive git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@149509 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_log_config.xml b/docs/manual/mod/mod_log_config.xml index 207713a87a0..ef85b1b867b 100644 --- a/docs/manual/mod/mod_log_config.xml +++ b/docs/manual/mod/mod_log_config.xml @@ -76,10 +76,10 @@ Local IP-address %...B - Bytes sent, excluding HTTP headers. + Size of response in bytes, excluding HTTP headers. %...b - Bytes sent, excluding HTTP headers. In CLF format, i.e. + Size of response in bytes, excluding HTTP headers. In CLF format, i.e. a '-' rather than a 0 when no bytes are sent. %...{Foobar}C @@ -237,6 +237,14 @@ a backslash, and all whitespace characters which are written in their C-style notation (\n, \t etc).

+

Note that in httpd 2.0, unlike 1.3, the %b and + %B format strings do not represent the number of + bytes sent to the client, but simply the size in bytes of the HTTP + response (which will differ, for instance, if the connection is + aborted, or if SSL is used). The %O format provided + by mod_logio will log the actual number of bytes + sent over the network.

+

Some commonly used log format strings are: