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

cvs commit: apache-2.0/src/main http_connection.c

ake         00/06/19 10:38:07

  Modified:    src/include httpd.h
               src/main http_connection.c
  Log:
  Add notes field to conn_rec
  
  Revision  Changes    Path
  1.59      +2 -0      apache-2.0/src/include/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/httpd.h,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- httpd.h	2000/06/17 16:29:46	1.58
  +++ httpd.h	2000/06/19 17:37:52	1.59
  @@ -800,6 +800,8 @@
       long id;                    /* ID of this connection; unique at any
                                    * point in time */
       void *conn_config;		/* Notes on *this* connection */
  +    ap_table_t *notes;  /* send note from one module to another, must
  +                         * remain valid for all requests on this conn */
   };
   
   /* Per-vhost config... */
  
  
  
  1.39      +1 -0      apache-2.0/src/main/http_connection.c
  
  Index: http_connection.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_connection.c,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- http_connection.c	2000/06/12 23:02:48	1.38
  +++ http_connection.c	2000/06/19 17:38:06	1.39
  @@ -260,6 +260,7 @@
        */
   
       conn->conn_config=ap_create_conn_config(p);
  +    conn->notes = ap_make_table(p, 5);
   
       conn->pool = p;
       conn->local_addr = *saddr;