home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277269_mod_cgi.h < prev    next >
C/C++ Source or Header  |  2004-09-23  |  2KB  |  58 lines

  1. /* Copyright 2001-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef _MOD_CGI_H
  17. #define _MOD_CGI_H 1
  18.  
  19. #include "mod_include.h"
  20.  
  21. typedef enum {RUN_AS_SSI, RUN_AS_CGI} prog_types;
  22.  
  23. typedef struct {
  24.     apr_int32_t          in_pipe;
  25.     apr_int32_t          out_pipe;
  26.     apr_int32_t          err_pipe;
  27.     int                  process_cgi;
  28.     apr_cmdtype_e        cmd_type;
  29.     apr_int32_t          detached;
  30.     prog_types           prog_type;
  31.     apr_bucket_brigade **bb;
  32.     include_ctx_t       *ctx;
  33.     ap_filter_t         *next;
  34. } cgi_exec_info_t;
  35.  
  36. /**
  37.  * Registerable optional function to override CGI behavior;
  38.  * Reprocess the command and arguments to execute the given CGI script.
  39.  * @param cmd Pointer to the command to execute (may be overridden)
  40.  * @param argv Pointer to the arguments to pass (may be overridden)
  41.  * @param r The current request
  42.  * @param p The pool to allocate correct cmd/argv elements within.
  43.  * @param process_cgi Set true if processing r->filename and r->args
  44.  *                    as a CGI invocation, otherwise false
  45.  * @param type Set to APR_SHELLCMD or APR_PROGRAM on entry, may be
  46.  *             changed to invoke the program with alternate semantics.
  47.  * @param detach Should the child start in detached state?  Default is no. 
  48.  * @remark This callback may be registered by the os-specific module 
  49.  * to correct the command and arguments for apr_proc_create invocation
  50.  * on a given os.  mod_cgi will call the function if registered.
  51.  */
  52. APR_DECLARE_OPTIONAL_FN(apr_status_t, ap_cgi_build_command, 
  53.                         (const char **cmd, const char ***argv,
  54.                          request_rec *r, apr_pool_t *p, 
  55.                          cgi_exec_info_t *e_info));
  56.  
  57. #endif /* _MOD_CGI_H */
  58.