You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2003/01/12 21:44:38 UTC

cvs commit: httpd-2.0/include util_filter.h

jerenkrantz    2003/01/12 12:44:38

  Modified:    include  util_filter.h
  Log:
  Update documentation to match prototype for ap_register_input_filter and
  ap_register_output_filter.
  
  Submitted by: Stas Bekman <st...@stason.org>,
                Joe Schaefer <jo...@sunstarsys.com>
  Reviewed by: Justin Erenkrantz
  
  Revision  Changes    Path
  1.75      +6 -2      httpd-2.0/include/util_filter.h
  
  Index: util_filter.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/include/util_filter.h,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -u -r1.74 -r1.75
  --- util_filter.h	28 Jun 2002 08:40:23 -0000	1.74
  +++ util_filter.h	12 Jan 2003 20:44:37 -0000	1.75
  @@ -328,8 +328,10 @@
    *
    * @param name The name to attach to the filter function
    * @param filter_func The filter function to name
  - * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT or ::
  - *        AP_FTYPE_CONNECTION
  + * @param filter_init The function to call before the filter handlers 
  +                      are invoked
  + * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT or
  + *              ::AP_FTYPE_CONNECTION
    * @see add_input_filter()
    */
   AP_DECLARE(ap_filter_rec_t *) ap_register_input_filter(const char *name,
  @@ -344,6 +346,8 @@
    *
    * @param name The name to attach to the filter function
    * @param filter_func The filter function to name
  + * @param filter_init The function to call before the filter handlers 
  + *                    are invoked
    * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT or
    *              ::AP_FTYPE_CONNECTION
    * @see ap_add_output_filter()