You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2005/05/17 01:20:57 UTC

svn commit: r170488 - /httpd/apreq/trunk/library/module_custom.c

Author: joes
Date: Mon May 16 16:20:56 2005
New Revision: 170488

URL: http://svn.apache.org/viewcvs?rev=170488&view=rev
Log:
Remove useless cookie_header attribute from the custom handle.

Modified:
    httpd/apreq/trunk/library/module_custom.c

Modified: httpd/apreq/trunk/library/module_custom.c
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/library/module_custom.c?rev=170488&r1=170487&r2=170488&view=diff
==============================================================================
--- httpd/apreq/trunk/library/module_custom.c (original)
+++ httpd/apreq/trunk/library/module_custom.c Mon May 16 16:20:56 2005
@@ -23,7 +23,6 @@
 
 struct custom_handle {
     struct apreq_handle_t        handle;
-    const char                  *cookie_header;
 
     apr_table_t                 *jar, *args, *body;
     apr_status_t                 jar_status,
@@ -250,21 +249,20 @@
 }
 
 
-static APREQ_MODULE(custom, 20050425);
+static APREQ_MODULE(custom, 20050516);
 
-APREQ_DECLARE(apreq_handle_t*) apreq_handle_custom(apr_pool_t *pool,
-                                                       const char *query_string,
-                                                       const char *cookie,
-                                                       apreq_parser_t *parser,
-                                                       apr_uint64_t read_limit,
-                                                       apr_bucket_brigade *in)
+APREQ_DECLARE(apreq_handle_t *)apreq_handle_custom(apr_pool_t *pool,
+                                                   const char *query_string,
+                                                   const char *cookie,
+                                                   apreq_parser_t *parser,
+                                                   apr_uint64_t read_limit,
+                                                   apr_bucket_brigade *in)
 {
     struct custom_handle *req;
     req = apr_palloc(pool, sizeof(*req));
     req->handle.module = &custom_module;
     req->handle.pool = pool;
     req->handle.bucket_alloc = in->bucket_alloc;
-    req->cookie_header = cookie;
     req->read_limit = read_limit;
     req->parser = parser;
     req->in = in;