You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2003/08/22 22:35:32 UTC

cvs commit: httpd-2.0/include util_filter.h

stas        2003/08/22 13:35:32

  Modified:    include  Tag: APACHE_2_0_BRANCH util_filter.h
  Log:
  backport doc patch
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.74.2.3  +8 -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.2.2
  retrieving revision 1.74.2.3
  diff -u -r1.74.2.2 -r1.74.2.3
  --- util_filter.h	15 Jun 2003 05:33:03 -0000	1.74.2.2
  +++ util_filter.h	22 Aug 2003 20:35:32 -0000	1.74.2.3
  @@ -329,8 +329,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,
  @@ -345,6 +347,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()
  @@ -475,6 +479,8 @@
    * to flush the brigade if the brigade buffer overflows.
    * @param bb The brigade to flush
    * @param ctx The filter to pass the brigade to
  + * @note this function has nothing to do with FLUSH buckets. It is simply
  + * a way to flush content out of a brigade and down a filter stack.
    */
   AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb,
                                                   void *ctx);