From: Stas Bekman Date: Thu, 12 Aug 2004 05:22:52 +0000 (+0000) Subject: correct struct fields comments X-Git-Tag: STRIKER_2_0_51_RC1^2~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78ebbef10cfb6b306725dbad3f51cbc3a2fc3702;p=thirdparty%2Fapache%2Fhttpd.git correct struct fields comments PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@104632 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index 69bd6a38f0e..3f1a4c0b568 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -857,7 +857,7 @@ struct request_rec { char *path_info; /** The QUERY_ARGS extracted from this request */ char *args; - /** ST_MODE set to zero if no such file */ + /** finfo.protection (st_mode) set to zero if no such file */ apr_finfo_t finfo; /** A struct containing the components of URI */ apr_uri_t parsed_uri; @@ -981,10 +981,11 @@ struct conn_rec { /** ID of this connection; unique at any point in time */ long id; - /** Notes on *this* connection */ + /** Config vector containing pointers to connections per-server + * config structures. */ struct ap_conf_vector_t *conn_config; - /** send note from one module to another, must remain valid for all - * requests on this conn */ + /** Notes on *this* connection: send note from one module to + * another. must remain valid for all requests on this conn */ apr_table_t *notes; /** A list of input filters to be used for this connection */ struct ap_filter_t *input_filters;