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 03:21:17 UTC

svn commit: r170500 - /httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.xs

Author: joes
Date: Mon May 16 18:21:15 2005
New Revision: 170500

URL: http://svn.apache.org/viewcvs?rev=170500&view=rev
Log:
Add more default args.

Modified:
    httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.xs

Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.xs
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.xs?rev=170500&r1=170499&r2=170500&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.xs (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.xs Mon May 16 18:21:15 2005
@@ -1,7 +1,7 @@
 MODULE = APR::Request::Parser    PACKAGE = APR::Request::Parser
 
 APR::Request::Parser
-make(class, pool, ba, ct, parser, blim, tdir, hook=NULL)
+make(class, pool, ba, ct, parser, blim=APREQ_DEFAULT_BRIGADE_LIMIT, tdir=NULL, hook=NULL)
     apreq_xs_subclass_t class
     APR::Pool pool
     APR::BucketAlloc ba
@@ -18,7 +18,7 @@
     RETVAL
 
 APR::Request::Parser
-generic(class, pool, ba, ct, blim, tdir, hook=NULL)
+generic(class, pool, ba, ct, blim=APREQ_DEFAULT_BRIGADE_LIMIT, tdir=NULL, hook=NULL)
     apreq_xs_subclass_t class
     APR::Pool pool
     APR::BucketAlloc ba
@@ -35,7 +35,7 @@
     RETVAL
 
 APR::Request::Parser
-headers(class, pool, ba, ct, blim, tdir, hook=NULL)
+headers(class, pool, ba, ct, blim=APREQ_DEFAULT_BRIGADE_LIMIT, tdir=NULL, hook=NULL)
     apreq_xs_subclass_t class
     APR::Pool pool
     APR::BucketAlloc ba
@@ -52,7 +52,7 @@
     RETVAL
 
 APR::Request::Parser
-urlencoded(class, pool, ba, ct, blim, tdir, hook=NULL)
+urlencoded(class, pool, ba, ct, blim=APREQ_DEFAULT_BRIGADE_LIMIT, tdir=NULL, hook=NULL)
     apreq_xs_subclass_t class
     APR::Pool pool
     APR::BucketAlloc ba
@@ -70,7 +70,7 @@
 
 
 APR::Request::Parser
-multipart(class, pool, ba, ct, blim, tdir, hook=NULL)
+multipart(class, pool, ba, ct, blim=APREQ_DEFAULT_BRIGADE_LIMIT, tdir=NULL, hook=NULL)
     apreq_xs_subclass_t class
     APR::Pool pool
     APR::BucketAlloc ba
@@ -87,7 +87,7 @@
     RETVAL
 
 APR::Request::Parser
-default(class, pool, ba, ct, blim, tdir, hook=NULL)
+default(class, pool, ba, ct, blim=APREQ_DEFAULT_BRIGADE_LIMIT, tdir=NULL, hook=NULL)
     apreq_xs_subclass_t class
     APR::Pool pool
     APR::BucketAlloc ba