From: Stas Bekman Date: Thu, 12 Aug 2004 05:22:59 +0000 (+0000) Subject: correct struct fields comments X-Git-Tag: STRIKER_2_1_0_RC1~138 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d60aa10075cfefc4a3d224ff1f83788f6180993c;p=apache correct struct fields comments PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104633 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index b39208b76a..8ff392bf8f 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -873,7 +873,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; @@ -997,10 +997,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;