From d60aa10075cfefc4a3d224ff1f83788f6180993c Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Thu, 12 Aug 2004 05:22:59 +0000 Subject: [PATCH] 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 --- include/httpd.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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; -- 2.50.1