+1 on correcting the description.
The formatting issue falls into the "apache coding style"
argum^H^H^H^H^Hdiscussion that flares up now and then and we never get
around to running indent on the source :)
Dean
On Tue, 11 Feb 1997, Rodent of Unusual Size wrote:
> The description of the IdentityCheck directive says its definer is
> RFC931 - even though that's obsolete and we know it. (We refer to
> the identd check via the new RFC name, RFC1413, throughout.) This
> patch merely fixes the description.
>
> It also manages to get all the fields of the directive defining
> clause into 80 columns or less. This particular section is a bit
> dicey, 80-columns-wise. I'd like to reformat it into something that
> doesn't need an LP27 to print; any objections to a [cosmetic] patch
> like that?
>
> #ken :-)}
>
> Index: http_core.c
> ===================================================================
> RCS file: /usr/users/coar/myApache/repository/apache/src/http_core.c,v
> retrieving revision 1.68
> diff -c -r1.68 http_core.c
> *** 1.68 1997/02/10 15:17:43
> --- http_core.c 1997/02/11 20:44:00
> ***************
> *** 1207,1213 ****
> { "KeepAliveTimeout", set_keep_alive_timeout, NULL, RSRC_CONF, TAKE1, "Keep-Alive timeout
duration (sec)"},
> { "MaxKeepAliveRequests", set_keep_alive_max, NULL, RSRC_CONF, TAKE1, "Maximum number
of Keep-Alive requests per connection, or 0 for infinite" },
> { "KeepAlive", set_keep_alive, NULL, RSRC_CONF, TAKE1, "Whether persistent connections
should be On or Off" },
> ! { "IdentityCheck", set_idcheck, NULL, RSRC_CONF|ACCESS_CONF, FLAG, "Enable identd (RFC931)
user lookups - SLOW" },
> { "ContentDigest", set_content_md5, NULL, RSRC_CONF|ACCESS_CONF|OR_AUTHCFG, FLAG, "whether
or not to send a Content-MD5 header with each request" },
> { "StartServers", set_daemons_to_start, NULL, RSRC_CONF, TAKE1, "Number of child processes
launched at server startup" },
> { "MinSpareServers", set_min_free_servers, NULL, RSRC_CONF, TAKE1, "Minimum number
of idle children, to handle request spikes" },
> --- 1207,1220 ----
> { "KeepAliveTimeout", set_keep_alive_timeout, NULL, RSRC_CONF, TAKE1, "Keep-Alive timeout
duration (sec)"},
> { "MaxKeepAliveRequests", set_keep_alive_max, NULL, RSRC_CONF, TAKE1, "Maximum number
of Keep-Alive requests per connection, or 0 for infinite" },
> { "KeepAlive", set_keep_alive, NULL, RSRC_CONF, TAKE1, "Whether persistent connections
should be On or Off" },
> ! {
> ! "IdentityCheck",
> ! set_idcheck,
> ! NULL,
> ! RSRC_CONF|ACCESS_CONF,
> ! FLAG,
> ! "Enable identd (RFC1413) user lookups - SLOW"
> ! },
> { "ContentDigest", set_content_md5, NULL, RSRC_CONF|ACCESS_CONF|OR_AUTHCFG, FLAG, "whether
or not to send a Content-MD5 header with each request" },
> { "StartServers", set_daemons_to_start, NULL, RSRC_CONF, TAKE1, "Number of child processes
launched at server startup" },
> { "MinSpareServers", set_min_free_servers, NULL, RSRC_CONF, TAKE1, "Minimum number
of idle children, to handle request spikes" },
>
|