1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

process_cgi is more descriptive than replace_cmd.

It also affects query_string args.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94638 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2002-04-13 20:42:35 +00:00
parent c182bbe3b2
commit e97e2e539c
2 changed files with 13 additions and 7 deletions

View File

@@ -67,8 +67,8 @@
* @param argv Pointer to the arguments to pass (may be overridden)
* @param r The current request
* @param p The pool to allocate correct cmd/argv elements within.
* @param replace_cmd Set true if r->filename is valid and may
* replace argv[0] and cmd, otherwise false
* @param process_cgi Set true if processing r->filename and r->args
* as a CGI invocation, otherwise false
* @param type Set to APR_SHELLCMD or APR_PROGRAM on entry, may be
* changed to invoke the program with alternate semantics.
* @remark This callback may be registered by the os-specific module
@@ -78,6 +78,6 @@
APR_DECLARE_OPTIONAL_FN(apr_status_t, ap_cgi_build_command,
(const char **cmd, const char ***argv,
request_rec *r, apr_pool_t *p,
int replace_cmd, apr_cmdtype_e *type));
int process_cgi, apr_cmdtype_e *type));
#endif /* _MOD_CGI_H */