You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/08/08 06:24:51 UTC

cvs commit: apache-2.0/src/include ap_cache.h

rbb         00/08/07 21:24:51

  Modified:    src/include ap_cache.h
  Log:
  Remove some extra semicolons.
  
  Revision  Changes    Path
  1.5       +16 -16    apache-2.0/src/include/ap_cache.h
  
  Index: ap_cache.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/ap_cache.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ap_cache.h	2000/08/02 05:25:26	1.4
  +++ ap_cache.h	2000/08/08 04:24:50	1.5
  @@ -84,7 +84,7 @@
    *         for this client.
    * @param  Current server_rec, this will be used for retreiving configuration, 
    *         and various other necesar server pieces.
  - * @deffunc apr_status_t ap_cache_init(ap_cache_handle_t **h, const char *desc, server_rec *r);
  + * @deffunc apr_status_t ap_cache_init(ap_cache_handle_t **h, const char *desc, server_rec *r)
    */
   apr_status_t ap_cache_init(ap_cache_handle_t **h, const char *desc, server_rec *r);
   
  @@ -92,7 +92,7 @@
    * This function will finalize a cache_handle, after this call the handle will
    * no longer be usable.
    * @param  The handle to close
  - * @deffunc apr_status_t ap_cache_close(ap_cache_handle_t *);
  + * @deffunc apr_status_t ap_cache_close(ap_cache_handle_t *)
    */
   apr_status_t ap_cache_close(ap_cache_handle_t *);
   
  @@ -101,7 +101,7 @@
    * the caching module will not do this on its own, however it isn't required to actually 
    * garbage collect anything, and may defer the call until later.
    * @param  The handle to force a garbage collection.
  - * @deffunc apr_status_t ap_cache_garbage_collect(ap_cache_handle_t *h);
  + * @deffunc apr_status_t ap_cache_garbage_collect(ap_cache_handle_t *h)
    */
   apr_status_t ap_cache_garbage_collect(ap_cache_handle_t *h);
   
  @@ -114,7 +114,7 @@
    * @param  The cache to search in.
    * @param  The name of the record you are looking for
    * @param  Where to put the cache element if a seek succeeds.
  - * @deffunc apr_status_t ap_cache_seek(ap_cache_handle_t *h, const char *name, ap_cache_el **);
  + * @deffunc apr_status_t ap_cache_seek(ap_cache_handle_t *h, const char *name, ap_cache_el **)
    */
   apr_status_t ap_cache_seek(ap_cache_handle_t *h, const char *name, ap_cache_el **);
   
  @@ -128,7 +128,7 @@
    * @param  The cache to create this element in.
    * @param  The name to give this new record
    * @param  Where to put this new element. 
  - * @deffunc apr_status_t ap_cache_create(ap_cache_handle_t *h, const char *name, ap_cache_el **);
  + * @deffunc apr_status_t ap_cache_create(ap_cache_handle_t *h, const char *name, ap_cache_el **)
    */
   apr_status_t ap_cache_create(ap_cache_handle_t *h, const char *name, ap_cache_el **);
   
  @@ -139,7 +139,7 @@
    * element is no longer locked.
    * @param  The cache to remove this record from.
    * @param  The name of the record to remove from the cache.
  - * @deffunc apr_status_t ap_cache_remove(ap_cache_handle_t *h, const char *name);
  + * @deffunc apr_status_t ap_cache_remove(ap_cache_handle_t *h, const char *name)
    */
   apr_status_t ap_cache_remove(ap_cache_handle_t *h, const char *name);
   
  @@ -151,7 +151,7 @@
    * @param  A previously ap-cache_seek()'d or ap_cache_create()'d element.
    * @param  Header name looking to retrieve, must be null terminated.
    * @param  Where to put the value
  - * @deffunc apr_status_t ap_cache_el_header(ap_cache_el *el, const char *hdr, char **val);
  + * @deffunc apr_status_t ap_cache_el_header(ap_cache_el *el, const char *hdr, char **val)
    */
   apr_status_t ap_cache_el_header(ap_cache_el *el, const char *hdr, char **val);
   
  @@ -176,7 +176,7 @@
    * This will merge an existing apr_table_t into a cache_el's header section.
    * @param  The cache element to merge onto.
    * @param  The filled in apr_table_t to merge in.
  - * @deffunc apr_status_t ap_cache_el_header_merge(ap_cache_el *el, apr_table_t *tbl);
  + * @deffunc apr_status_t ap_cache_el_header_merge(ap_cache_el *el, apr_table_t *tbl)
    */
   apr_status_t ap_cache_el_header_merge(ap_cache_el *el, apr_table_t *tbl);
   
  @@ -186,7 +186,7 @@
    * @param  The cache element to modify
    * @param  The name of the header to change
    * @param  The value to assign to the given name.
  - * @deffunc apr_status_t ap_cache_el_header_set(ap_cache_el *el, const char *hdrname, const char *hdrval);
  + * @deffunc apr_status_t ap_cache_el_header_set(ap_cache_el *el, const char *hdrname, const char *hdrval)
    */
   apr_status_t ap_cache_el_header_set(ap_cache_el *el, const char *hdrname, const char *hdrval);
   
  @@ -197,7 +197,7 @@
    * @param  The cache element to add to
    * @param  The name of the header to append values to.
    * @param  The value to append to the given header name.
  - * @deffunc apr_status_t ap_cache_el_header_add(ap_cache_el *el, const char *hdrname, const char *hdrval);
  + * @deffunc apr_status_t ap_cache_el_header_add(ap_cache_el *el, const char *hdrname, const char *hdrval)
    */
   apr_status_t ap_cache_el_header_add(ap_cache_el *el, const char *hdrname, const char *hdrval);
   
  @@ -206,7 +206,7 @@
    * @param  The cache element to remove headers from
    * @param  The name of the header to remove. This will remove ALL values assigned to this
    *         header (via the ap_cache_el_header_add call).
  - * @deffunc apr_status_t ap_cache_el_header_remove(ap_cache_el *el, const char *hdr);
  + * @deffunc apr_status_t ap_cache_el_header_remove(ap_cache_el *el, const char *hdr)
    */
   apr_status_t ap_cache_el_header_remove(ap_cache_el *el, const char *hdr);
   
  @@ -214,7 +214,7 @@
    * This will clear out an entire header section. You may use this if you are intending
    * to change the entire value of the header section of a cache element.
    * @param  The element to clear 
  - * @deffunc apr_status_t ap_cache_el_header_clear(ap_cache_el *el);
  + * @deffunc apr_status_t ap_cache_el_header_clear(ap_cache_el *el)
    */
   apr_status_t ap_cache_el_header_clear(ap_cache_el *el);
   
  @@ -228,7 +228,7 @@
    *         will be a normal buff that will either write to a network, or disk - but
    *         you should not rely on it going anywhere in a caching module as the destination
    *         for all data is opaque.
  - * @deffunc apr_status_t ap_cache_el_data(ap_cache_el *el, BUFF **);
  + * @deffunc apr_status_t ap_cache_el_data(ap_cache_el *el, BUFF **)
    */
   apr_status_t ap_cache_el_data(ap_cache_el *el, BUFF **);
   
  @@ -238,7 +238,7 @@
    * to another.
    * @param  The element to append to
    * @param  An existing BUFF to append onto the ap_cache_el's stream of data.
  - * @deffunc apr_status_t ap_cache_el_data_append(ap_cache_el *el, BUFF *data);
  + * @deffunc apr_status_t ap_cache_el_data_append(ap_cache_el *el, BUFF *data)
    */
   apr_status_t ap_cache_el_data_append(ap_cache_el *el, BUFF *data);
   
  @@ -246,7 +246,7 @@
    * Clear the data section of an existing cache_el. You may use this if you are 
    * intending to change the entire value of the data section of a cache element.
    * @param  The element to clear
  - * @deffunc apr_status_t ap_cache_el_data_clear(ap_cache_el *el);
  + * @deffunc apr_status_t ap_cache_el_data_clear(ap_cache_el *el)
    */
   apr_status_t ap_cache_el_data_clear(ap_cache_el *el);
   
  @@ -260,7 +260,7 @@
    * @param  The element to finalize, after calling this function the caching
    *         element is no longer valid and you must ap_cache_seek for it again if
    *         you want to make any further changes to it.
  - * @deffunc apr_status_t ap_cache_el_finalize(ap_cache_el *el);
  + * @deffunc apr_status_t ap_cache_el_finalize(ap_cache_el *el)
    */
   apr_status_t ap_cache_el_finalize(ap_cache_el *el);