davidw 2002/11/04 16:07:16
Modified: c apache_request.h Log: Added a macro for setting the temp directory. Reviewed by: Joe Schaefer Revision Changes Path 1.9 +1 -0 httpd-apreq/c/apache_request.h Index: apache_request.h =================================================================== RCS file: /home/cvs/httpd-apreq/c/apache_request.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- apache_request.h 26 Jun 2001 10:58:29 -0000 1.8 +++ apache_request.h 5 Nov 2002 00:07:16 -0000 1.9 @@ -116,6 +116,7 @@ ApacheUpload_info(upload, "Content-Type") #define ApacheRequest_set_post_max(req, max) (req->post_max = max) +#define ApacheRequest_set_temp_dir(req, dir) (req->temp_dir = dir) char *ApacheUtil_expires(pool *p, char *time_str, int type); #define EXPIRES_HTTP 1
