You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ch...@locus.apache.org on 2000/06/12 22:45:27 UTC

cvs commit: apache-2.0/src/lib/apr/include apr_network_io.h apr_tables.h

chuck       00/06/12 13:45:27

  Modified:    src/lib/apr/include apr_network_io.h apr_tables.h
  Log:
  changes for mod_proxy/mod_cache
  
  Submitted by:	Sam Magnuson
  Reviewed by:	Chuck Murcko, Ryan Bloom
  
  Revision  Changes    Path
  1.37      +2 -0      apache-2.0/src/lib/apr/include/apr_network_io.h
  
  Index: apr_network_io.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_network_io.h,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- apr_network_io.h	2000/05/24 22:32:36	1.36
  +++ apr_network_io.h	2000/06/12 20:45:26	1.37
  @@ -86,6 +86,7 @@
   #define APR_SO_REUSEADDR     16
   #define APR_SO_TIMEOUT       32
   #define APR_SO_SNDBUF        64
  +#define APR_SO_RCVBUF        128
   
   #define APR_POLLIN    0x001 
   #define APR_POLLPRI   0x002
  @@ -412,6 +413,7 @@
                                       values < 0 mean wait forever.  0 means
                                       don't wait at all.
                 APR_SO_SNDBUF     --  Set the SendBufferSize
  +              APR_SO_RCVBUF     --  Set the ReceiveBufferSize
       arg 3) Are we turning the option on or off.
   
   =cut
  
  
  
  1.2       +3 -0      apache-2.0/src/lib/apr/include/apr_tables.h
  
  Index: apr_tables.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_tables.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apr_tables.h	2000/06/08 19:29:38	1.1
  +++ apr_tables.h	2000/06/12 20:45:26	1.2
  @@ -155,6 +155,9 @@
   APR_EXPORT(void)
   	ap_table_do(int (*comp) (void *, const char *, const char *),
   		     void *rec, const ap_table_t *t, ...);
  +APR_EXPORT(void)
  +        ap_table_vdo(int (*comp) (void *, const char *, const char *),
  +                     void *rec, const ap_table_t *t, va_list);                  
   #define AP_OVERLAP_TABLES_SET   (0)
   #define AP_OVERLAP_TABLES_MERGE (1)
   APR_EXPORT(void) ap_overlap_tables(ap_table_t *a, const ap_table_t *b,